summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-01-26 09:58:10 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-01-26 09:58:10 +0100
commitbe42aa1aefec81b3d226af13a934f48d335191d3 (patch)
treecd5d5fb5cc15db1827ed7bf0eba4e6e9f597e18a /cpukit/aclocal
parentRevert "Support custom Makefiles." (diff)
downloadrtems-be42aa1aefec81b3d226af13a934f48d335191d3.tar.bz2
Revert "Google C++ Testing Framework 1.6.0."
This reverts commit 9bf3a868655f260c2fa6cbcab16f0218cf53e5b8.
Diffstat (limited to 'cpukit/aclocal')
-rw-r--r--cpukit/aclocal/enable-cxx.m413
-rw-r--r--cpukit/aclocal/prog-cxx.m434
2 files changed, 0 insertions, 47 deletions
diff --git a/cpukit/aclocal/enable-cxx.m4 b/cpukit/aclocal/enable-cxx.m4
deleted file mode 100644
index 8648743c2d..0000000000
--- a/cpukit/aclocal/enable-cxx.m4
+++ /dev/null
@@ -1,13 +0,0 @@
-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])
-])
diff --git a/cpukit/aclocal/prog-cxx.m4 b/cpukit/aclocal/prog-cxx.m4
deleted file mode 100644
index 20175ee27c..0000000000
--- a/cpukit/aclocal/prog-cxx.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-dnl
-dnl $Id$
-dnl
-dnl Check for target g++
-dnl
-
-AC_DEFUN([RTEMS_PROG_CXX_FOR_TARGET],
-[
-AC_BEFORE([$0], [RTEMS_CANONICALIZE_TOOLS])dnl
-AC_REQUIRE([RTEMS_ENABLE_CXX])
-RTEMS_CHECK_TOOL(CXX,g++)
-if test "$RTEMS_HAS_CPLUSPLUS" = "yes";
-then
- CXXFLAGS=${CXXFLAGS-${CFLAGS}}
-
-dnl Only accept g++
-dnl NOTE: This might be too restrictive
-test -z "$CXX" \
- && AC_MSG_ERROR([no acceptable c++ found in \$PATH])
-AC_PROG_CXX
-AC_PROG_CXXCPP
-
- if test "$ac_cv_prog_cc_cross" != "$ac_cv_prog_cxx_cross"; then
- AC_MSG_ERROR([***]
- [Inconsistency in compiler configuration:]
- [Target C compiler and target C++ compiler]
- [must both either be cross compilers or native compilers]
- [Hint: If building a posix bsp: LD_LIBRARY_PATH?] )
- fi
-else
-## Work-around to a bug in automake
-AM_CONDITIONAL([am__fastdepCXX],[false])
-fi
-])