source: rtems/testsuites/aclocal/enable-cxx.m4 @ 33a105fb

4.115
Last change on this file since 33a105fb was 33a105fb, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/12 at 16:08:48

Revert: Remove CVS Ids

See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html
for details.

  • Property mode set to 100644
File size: 338 bytes
Line 
1dnl $Id$
2
3AC_DEFUN([RTEMS_ENABLE_CXX],
4[
5AC_ARG_ENABLE(cxx,
6[AS_HELP_STRING(--enable-cxx,enable C++ support and build the rtems++ library)],
7[case "${enable_cxx}" in
8  yes) RTEMS_HAS_CPLUSPLUS=yes ;;
9  no) RTEMS_HAS_CPLUSPLUS=no   ;;
10  *)  AC_MSG_ERROR(bad value ${enableval} for enable-cxx option) ;;
11esac], [RTEMS_HAS_CPLUSPLUS=no])
12])
Note: See TracBrowser for help on using the repository browser.