summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/check-posix.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 10:22:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-09 10:22:40 +0000
commit6c362b8b3f3f9234968785ae459ced4a923f1d94 (patch)
treea33c2b085857b3542b045f9ffa4444a7efd57668 /testsuites/aclocal/check-posix.m4
parent2005-11-09 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6c362b8b3f3f9234968785ae459ced4a923f1d94.tar.bz2
Remove (Unused).
Diffstat (limited to '')
-rw-r--r--testsuites/aclocal/check-posix.m423
1 files changed, 0 insertions, 23 deletions
diff --git a/testsuites/aclocal/check-posix.m4 b/testsuites/aclocal/check-posix.m4
deleted file mode 100644
index be60c5f74a..0000000000
--- a/testsuites/aclocal/check-posix.m4
+++ /dev/null
@@ -1,23 +0,0 @@
-dnl $Id$
-dnl
-AC_DEFUN([RTEMS_CHECK_POSIX_API],
-[dnl
-AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
-AC_REQUIRE([RTEMS_ENABLE_POSIX])dnl
-
-AC_CACHE_CHECK([whether CPU supports libposix],
- rtems_cv_HAS_POSIX_API,
- [dnl
- case "$RTEMS_CPU" in
- unix*)
- rtems_cv_HAS_POSIX_API="no"
- ;;
- *)
- if test "${RTEMS_HAS_POSIX_API}" = "yes"; then
- rtems_cv_HAS_POSIX_API="yes";
- else
- rtems_cv_HAS_POSIX_API="disabled";
- fi
- ;;
- esac])
-])