source: rtems/testsuites/aclocal/rtems-test-no-pause.m4 @ cdf30f05

4.115
Last change on this file since cdf30f05 was e84c2a46, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/25/04 at 07:33:57

2004-03-25 Ralf Corsepius <corsepiu@…>

  • aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/rtems-test-no-pause.m4: Autoupdate to autoconf-2.59.
  • Property mode set to 100644
File size: 570 bytes
Line 
1AC_DEFUN([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE],
2[AC_ARG_ENABLE(test-no-pause,
3AS_HELP_STRING(--disable-test-no-pause,disable RTEMS_TEST_NO_PAUSE),
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]) ;;
8esac],[RTEMS_TEST_NO_PAUSE=yes])
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.