source: rtems/aclocal/rtems-test-no-pause.m4 @ 89b51f4

4.104.114.84.95
Last change on this file since 89b51f4 was e712997, checked in by Joel Sherrill <joel.sherrill@…>, on 09/13/01 at 13:14:30

2001-07-19 Ralf Corsepius <corsepiu@…>

  • configure.in: autoupdate to autoconf-2.52.
  • bootstrap: Add handling for configure.ac, make autoheader verbose, fix auto*tool invocation order.
  • aclocal/rtems-test-no-pause.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-bare.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-cxx.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-gcc28: Introduce AC_HELP_STRING.
  • aclocal/enable-inlines.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-itron.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-libcdir.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-multiprocessing.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-networking.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-posix.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-rdbg.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-rtemsbsp.m4: Introduce AC_HELP_STRING.
  • aclocal/enable-tests.m4: Introduce AC_HELP_STRING.
  • aclocal/env-rtemsbsp.m4: Add AC_ARC_VAR(RTEMS_BSP), apply true in RTEMS_CONFIG_PER_BSP conditional.
  • aclocal/multilib.m4: Introduce AC_HELP_STRING.
  • aclocal/rtems-debug.m4: Introduce AC_HELP_STRING.
  • aclocal/rtems-top.m4: Add AC_PREFIX_DEFAULT(/opt/rtems).
  • Property mode set to 100644
File size: 570 bytes
RevLine 
[b8a30d07]1AC_DEFUN(RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE,
2[AC_ARG_ENABLE(test-no-pause,
[e712997]3AC_HELP_STRING([--disable-test-no-pause],[disable RTEMS_TEST_NO_PAUSE]),
[b8a30d07]4[case "${enableval}" in
5  yes) RTEMS_TEST_NO_PAUSE=yes ;;
6  no) RTEMS_TEST_NO_PAUSE=no ;;
7  *) AC_MSG_ERROR([bad value ${enableval} for RTEMS_TEST_NO_PAUSE]) ;;
[237c259]8esac],[RTEMS_TEST_NO_PAUSE=yes])
[b8a30d07]9])
10
11AC_DEFUN(RTEMS_CHECK_RTEMS_TEST_NO_PAUSE,
12[AC_REQUIRE([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE])
13if test x"${RTEMS_TEST_NO_PAUSE}" = x"yes";
14then
15  AC_DEFINE_UNQUOTED(RTEMS_TEST_NO_PAUSE,1,[if RTEMS_TEST_NO_PAUSE is enabled])
16fi
17])
18
Note: See TracBrowser for help on using the repository browser.