New configuration files added by patch from

Ralf Corsepius <corsepiu@faw.uni-ulm.de>".
This commit is contained in:
Joel Sherrill
1999-08-10 15:38:09 +00:00
parent 01be59d939
commit 908436c1ec
49 changed files with 25448 additions and 0 deletions

27
aclocal/check-posix.m4 Normal file
View File

@@ -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
])