summaryrefslogtreecommitdiffstats
path: root/c/src/tests/aclocal/check-cpu.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-10-02 03:39:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-10-02 03:39:12 +0000
commit98e88aa39a888fbe1fc22afe459fbdfdfd65a3f6 (patch)
tree97bf057ca806c28f85713f110a3a98a8a87711b6 /c/src/tests/aclocal/check-cpu.m4
parent2003-10-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-98e88aa39a888fbe1fc22afe459fbdfdfd65a3f6.tar.bz2
2003-10-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:Remove RTEMS_CHECK_CPU. * aclocal/check-cpu.m4: Remove. * aclocal/check-cxx.m4, aclocal/check-itron.m4, aclocal/check-multiprocessing.m4, aclocal/check-networking.m4, aclocal/check-posix.m4: AC_REQUIRE RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
Diffstat (limited to 'c/src/tests/aclocal/check-cpu.m4')
-rw-r--r--c/src/tests/aclocal/check-cpu.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/c/src/tests/aclocal/check-cpu.m4 b/c/src/tests/aclocal/check-cpu.m4
deleted file mode 100644
index f3bc2141ae..0000000000
--- a/c/src/tests/aclocal/check-cpu.m4
+++ /dev/null
@@ -1,18 +0,0 @@
-dnl $Id$
-
-dnl check if RTEMS support a cpu
-AC_DEFUN(RTEMS_CHECK_CPU,
-[dnl
-AC_REQUIRE([RTEMS_TOP])
-AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])
-
-# Is this a supported CPU?
-AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])
-# FIXME: Temporary hack
-if test -d "$srcdir/$RTEMS_TOPdir/cpukit/score/cpu/$RTEMS_CPU"; then
- AC_MSG_RESULT(yes)
-else
- AC_MSG_ERROR(no)
-fi
-])dnl
-