forked from Imagelibrary/rtems
* 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.
19 lines
570 B
Plaintext
19 lines
570 B
Plaintext
AC_DEFUN([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE],
|
|
[AC_ARG_ENABLE(test-no-pause,
|
|
AS_HELP_STRING(--disable-test-no-pause,disable RTEMS_TEST_NO_PAUSE),
|
|
[case "${enableval}" in
|
|
yes) RTEMS_TEST_NO_PAUSE=yes ;;
|
|
no) RTEMS_TEST_NO_PAUSE=no ;;
|
|
*) AC_MSG_ERROR([bad value ${enableval} for RTEMS_TEST_NO_PAUSE]) ;;
|
|
esac],[RTEMS_TEST_NO_PAUSE=yes])
|
|
])
|
|
|
|
AC_DEFUN([RTEMS_CHECK_RTEMS_TEST_NO_PAUSE],
|
|
[AC_REQUIRE([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE])
|
|
if test x"${RTEMS_TEST_NO_PAUSE}" = x"yes";
|
|
then
|
|
AC_DEFINE_UNQUOTED(RTEMS_TEST_NO_PAUSE,1,[if RTEMS_TEST_NO_PAUSE is enabled])
|
|
fi
|
|
])
|
|
|