forked from Imagelibrary/rtems
* aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/rtems-test-no-pause.m4: Autoupdate to autoconf-2.59.
13 lines
338 B
Plaintext
13 lines
338 B
Plaintext
dnl $Id$
|
|
|
|
AC_DEFUN([RTEMS_ENABLE_CXX],
|
|
[
|
|
AC_ARG_ENABLE(cxx,
|
|
[AS_HELP_STRING(--enable-cxx,enable C++ support and build the rtems++ library)],
|
|
[case "${enable_cxx}" in
|
|
yes) RTEMS_HAS_CPLUSPLUS=yes ;;
|
|
no) RTEMS_HAS_CPLUSPLUS=no ;;
|
|
*) AC_MSG_ERROR(bad value ${enableval} for enable-cxx option) ;;
|
|
esac], [RTEMS_HAS_CPLUSPLUS=no])
|
|
])
|