source: rtems/cpukit/aclocal/check-posix.m4 @ 35d9b418

4.104.114.84.95
Last change on this file since 35d9b418 was 1bcbe41, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/27/03 at 14:36:23

2003-11-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: Use here-documents to generate cpuopts.tmp. Various fixes and changes to argument processing. Reflect changes to librpc Makefile.ams.
  • acinclude.m4: Use here-documents to generate cpuopts.tmp.
  • aclocal/check-itron.m4: Remove HAS_IRON_API.
  • aclocal/check-multiprocessing.m4: Remove HAS_MP.
  • aclocal/check-posix.m4: Remove HAS_POSIX_API.
  • Property mode set to 100644
File size: 477 bytes
Line 
1dnl $Id$
2dnl
3AC_DEFUN([RTEMS_CHECK_POSIX_API],
4[dnl
5AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
6AC_REQUIRE([RTEMS_ENABLE_POSIX])dnl
7
8AC_CACHE_CHECK([whether CPU supports libposix],
9  rtems_cv_HAS_POSIX_API,
10  [dnl
11    case "$RTEMS_CPU" in
12    unix*)
13      rtems_cv_HAS_POSIX_API="no"
14      ;;
15    *)
16      if test "${RTEMS_HAS_POSIX_API}" = "yes"; then
17        rtems_cv_HAS_POSIX_API="yes";
18      else
19        rtems_cv_HAS_POSIX_API="disabled";
20      fi
21      ;;
22    esac])
23])
Note: See TracBrowser for help on using the repository browser.