source: rtems/aclocal/enable-cxx.m4 @ 27272db3

4.115
Last change on this file since 27272db3 was 27272db3, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 07:00:16

Remove CVS-Ids.

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