summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/enable-cxx.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2021-11-24 12:03:57 -0600
committerJoel Sherrill <joel@rtems.org>2021-11-29 09:05:10 -0600
commite945e3fc4d6a6a74789c9a348120ec7d06e19231 (patch)
treeada9d52d13385f9b1adc561eadf0adf47f3a112b /testsuites/aclocal/enable-cxx.m4
parentbsp_specs: Delete last remnants of these. (diff)
downloadrtems-e945e3fc4d6a6a74789c9a348120ec7d06e19231.tar.bz2
*/aclocal/*: Remove remnants of autoconf/automae build system
Updates #4081.
Diffstat (limited to 'testsuites/aclocal/enable-cxx.m4')
-rw-r--r--testsuites/aclocal/enable-cxx.m411
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuites/aclocal/enable-cxx.m4 b/testsuites/aclocal/enable-cxx.m4
deleted file mode 100644
index 952f0151a8..0000000000
--- a/testsuites/aclocal/enable-cxx.m4
+++ /dev/null
@@ -1,11 +0,0 @@
-AC_DEFUN([RTEMS_ENABLE_CXX],
-[
-AC_ARG_ENABLE(cxx,
-[AS_HELP_STRING([--enable-cxx],
-[enable C++ support])],
-[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=yes])
-])