source: rtems/aclocal/check-posix.m4 @ f5c58361

4.104.114.84.95
Last change on this file since f5c58361 was b8a30d07, checked in by Joel Sherrill <joel.sherrill@…>, on 07/13/00 at 15:05:38

Patch rtems-rc-20000713-1-cvs.diff from Ralf Corsepius <corsepiu@…>
that is yet another multilib-related structual cleanup patch:

Changes:

  • Make RTEMS_TEST_NO_PAUSE a tests/ subpackage specific option.
    • Remove RTEMS_TEST_NO_PAUSE from custom/*.cfg, targopts.h and cpuopts.h.
    • Add autoconf macros RTEMS_*_RTEMS_TEST_NO_PAUSE (aclocal/rtems-test-no-pause.m4).
    • Add RTEMS_*_RTEMS_TEST_NO_PAUSE support to sptests/configure.ins and tmtests/configure.in. These are the only subdirectories which currently apply RTEMS_TEST_NO_PAUSE.
    • Add autoconf-DEFS support to all test subpackages' configure.ins below tests/. I.e. AC_DEFINES now get explicitly propagated as preprocessor defines into Makefiles, cf. AM_CPPFLAGS in tests/*/*.am, instead of using a global config-files.
    • Remove NDEBUG from custom/*.cfg.
  • AC_DEFINE POSIX_API, ITRON_API and MULTIPROCESSING in exec/configure.in, only.
    • All other sources now should relay on the values from cpuopts.h and should not define them themselves.
    • Several related changes to many configure.ins
  • Bug-fixes to RTEMS_*_RTEMS_DEBUG macros (Actually workarounds to quoting bugs in autoconf).

Notes:

  • This patch is rather immature and only tested for a small subset of BSPs (requires the tests to be enabled and therefore takes an tremendous amount of disc space and time.)
  • The patches to *cfg were generated by a script. Expect file formating changes :)
  • Property mode set to 100644
File size: 783 bytes
Line 
1dnl $Id$
2dnl
3AC_DEFUN(RTEMS_CHECK_POSIX_API,
4[dnl
5AC_REQUIRE([RTEMS_CHECK_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])
23if test "$rtems_cv_HAS_POSIX_API" = "yes"; then
24  HAS_POSIX_API="yes";
25else
26  HAS_POSIX_API="no";
27fi
28AC_SUBST(HAS_POSIX_API)dnl
29])
30
31AC_DEFUN(RTEMS_DEFINE_POSIX_API,
32[AC_REQUIRE([RTEMS_CHECK_POSIX_API])dnl
33if test x"${HAS_POSIX_API}" = x"yes";
34then
35  AC_DEFINE_UNQUOTED(RTEMS_POSIX_API,1,[if posix api is supported])
36fi
37])
Note: See TracBrowser for help on using the repository browser.