summaryrefslogtreecommitdiffstats
path: root/aclocal/check-posix.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal/check-posix.m4')
-rw-r--r--aclocal/check-posix.m436
1 files changed, 0 insertions, 36 deletions
diff --git a/aclocal/check-posix.m4 b/aclocal/check-posix.m4
deleted file mode 100644
index 7512f663f5..0000000000
--- a/aclocal/check-posix.m4
+++ /dev/null
@@ -1,36 +0,0 @@
-dnl $Id$
-dnl
-AC_DEFUN(RTEMS_CHECK_POSIX_API,
-[dnl
-AC_REQUIRE([RTEMS_CHECK_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])
-if test "$rtems_cv_HAS_POSIX_API" = "yes"; then
- HAS_POSIX_API="yes";
-else
- HAS_POSIX_API="no";
-fi
-AC_SUBST(HAS_POSIX_API)dnl
-])
-
-AC_DEFUN(RTEMS_DEFINE_POSIX_API,
-[AC_REQUIRE([RTEMS_CHECK_POSIX_API])dnl
-AS_IF(
- [test x"${HAS_POSIX_API}" = x"yes"],
- [AC_DEFINE_UNQUOTED(RTEMS_POSIX_API,1,[if posix api is supported])])
-])