summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-10-21 05:56:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-10-21 05:56:10 +0000
commit80886bd1bc571ec9d49c3491281cdfb13b1d1e19 (patch)
tree1095bb5f7a45c2190abd1e86ed606257516f59df /cpukit/aclocal
parentNew. (diff)
downloadrtems-80886bd1bc571ec9d49c3491281cdfb13b1d1e19.tar.bz2
Remove.
Diffstat (limited to 'cpukit/aclocal')
-rw-r--r--cpukit/aclocal/enable-inlines.m411
-rw-r--r--cpukit/aclocal/prog-gnat.m445
2 files changed, 0 insertions, 56 deletions
diff --git a/cpukit/aclocal/enable-inlines.m4 b/cpukit/aclocal/enable-inlines.m4
deleted file mode 100644
index 2c79538dce..0000000000
--- a/cpukit/aclocal/enable-inlines.m4
+++ /dev/null
@@ -1,11 +0,0 @@
-dnl $Id$
-
-AC_DEFUN([RTEMS_ENABLE_INLINES],
-[AC_ARG_ENABLE(rtems-inlines,
-AS_HELP_STRING(--enable-rtems-inlines,enable RTEMS inline functions (default:enabled, disable to use macros)),
-[case "${enableval}" in
- yes) enable_rtems_inlines=yes ;;
- no) enable_rtems_inlines=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for enable-rtems-inlines option) ;;
-esac],[enable_rtems_inlines=yes])
-])
diff --git a/cpukit/aclocal/prog-gnat.m4 b/cpukit/aclocal/prog-gnat.m4
deleted file mode 100644
index 6e169a8dc7..0000000000
--- a/cpukit/aclocal/prog-gnat.m4
+++ /dev/null
@@ -1,45 +0,0 @@
-## $Id$
-##
-## Partially borrowed from gcc-3.2
-##
-## WARNING: All the stuff below is pretty immature.
-
-AC_DEFUN([RTEMS_PROG_GNAT],
-[AC_REQUIRE([AC_CHECK_TOOL_PREFIX])
-AC_REQUIRE([RTEMS_PROG_CC_FOR_TARGET])
-
-AC_CHECK_TOOL([GNATMAKE],[gnatmake],[])
-AC_CACHE_CHECK([for compiler driver that understands Ada],
- [rtems_cv_prog_CCADA],
-[cat >conftest.adb <<EOF
-procedure conftest is begin null; end conftest;
-EOF
-rtems_cv_prog_CCADA=
-# Have to do ac_tool_prefix and user overrides by hand.
-user_ccada=$CCADA
-user_cc=$CC
-for cand in ${ac_tool_prefix}$user_ccada $user_ccada \
- ${ac_tool_prefix}$user_cc $user_cc \
- ${ac_tool_prefix}gcc gcc \
- ${ac_tool_prefix}cc cc \
- ${ac_tool_prefix}gnatgcc gnatgcc \
- ${ac_tool_prefix}gnatcc gnatcc \
- ${ac_tool_prefix}adagcc adagcc \
- ${ac_tool_prefix}adac adac ; do
- # There is a bug in all released versions of GCC which causes the
- # driver to exit successfully when the appropriate language module
- # has not been installed. This is fixed in 2.95.4, 3.0.2, and 3.1.
- # Therefore we must check for the error message as well as an
- # unsuccessful exit.
- errors=`($cand -c conftest.adb) 2>&1 || echo failure`
- AS_IF([test -z "$errors"],
- [rtems_cv_prog_CCADA=$cand
- break])
-done
-rm -f conftest.*])
-AC_SUBST([CCADA],[$rtems_cv_prog_CCADA])
-
-AS_IF([test -n "$GNATMAKE" && test -n "$CCADA"],
- [HAVE_GNAT=yes],
- [HAVE_GNAT=no])
-])