summaryrefslogtreecommitdiffstats
path: root/aclocal/check-posix.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-08-10 15:38:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-08-10 15:38:09 +0000
commit908436c1ec62838e4efdabbc591ee92b817d25b7 (patch)
treee37bfda1e27f94b1905f0e7169522fe0de9529ec /aclocal/check-posix.m4
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to correct a minor (diff)
downloadrtems-908436c1ec62838e4efdabbc591ee92b817d25b7.tar.bz2
New configuration files added by patch from
Ralf Corsepius <corsepiu@faw.uni-ulm.de>".
Diffstat (limited to 'aclocal/check-posix.m4')
-rw-r--r--aclocal/check-posix.m427
1 files changed, 27 insertions, 0 deletions
diff --git a/aclocal/check-posix.m4 b/aclocal/check-posix.m4
new file mode 100644
index 0000000000..43d175deac
--- /dev/null
+++ b/aclocal/check-posix.m4
@@ -0,0 +1,27 @@
+dnl $Id$
+dnl
+AC_DEFUN(RTEMS_CHECK_POSIX_API,
+[dnl
+AC_REQUIRE([RTEMS_CHECK_CPU])dnl
+AC_CACHE_CHECK([whether BSP 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
+])