summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/gcc-isystem.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 11:47:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-08 11:47:24 +0000
commitc9180ad56ee7b5a3becc3aded5ec59daf55b6ad5 (patch)
tree8da9240cd3ac3dcf7158e11e0c96bad131bd78e5 /testsuites/aclocal/gcc-isystem.m4
parent2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-c9180ad56ee7b5a3becc3aded5ec59daf55b6ad5.tar.bz2
Remove (Unused).
Diffstat (limited to '')
-rw-r--r--testsuites/aclocal/gcc-isystem.m425
1 files changed, 0 insertions, 25 deletions
diff --git a/testsuites/aclocal/gcc-isystem.m4 b/testsuites/aclocal/gcc-isystem.m4
deleted file mode 100644
index 94098cf33c..0000000000
--- a/testsuites/aclocal/gcc-isystem.m4
+++ /dev/null
@@ -1,25 +0,0 @@
-dnl
-dnl $Id$
-dnl
-dnl Check whether the gcc accepts -isystem
-dnl
-
-AC_DEFUN([RTEMS_GCC_ISYSTEM],
-[AC_REQUIRE([RTEMS_PROG_CC])
-AC_CACHE_CHECK(whether $CC accepts -isystem,rtems_cv_gcc_isystem,
-[
-rtems_cv_gcc_isystem=no
-if test x"$GCC" = x"yes"; then
-cat << EOF > conftest.h
-int conftest123();
-EOF
-cat << EOF > conftest.c
-#include <conftest.h>
-int conftest123() {}
-EOF
- if test -z "`${CC} -isystem./ -c conftest.c 2>&1`";then
- rtems_cv_gcc_isystem=yes
- fi
-fi
-rm -f conftest*
-])])