mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-21 08:10:34 +08:00
2002-10-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/enable-bare.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-cxx.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-inlines.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-itron.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-multiprocessing.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-networking.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-posix.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-rdbg.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-rtemsbsp.m4: Improve quoting of AC_HELP_STRING. * aclocal/enable-tests.m4: Improve quoting of AC_HELP_STRING. (autoconf > 2.54 seems to have problems with the old form of quoting).
This commit is contained in:
@@ -1,3 +1,18 @@
|
||||
2002-10-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* aclocal/enable-bare.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-cxx.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-inlines.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-itron.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-multiprocessing.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-networking.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-posix.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-rdbg.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-rtemsbsp.m4: Improve quoting of AC_HELP_STRING.
|
||||
* aclocal/enable-tests.m4: Improve quoting of AC_HELP_STRING.
|
||||
(autoconf > 2.54 seems to have problems with the old form of
|
||||
quoting).
|
||||
|
||||
2002-10-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* aclocal/enable-rtemsbsp.m4: Remove '\' in AC_MSG_ERROR
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
AC_DEFUN(RTEMS_ENABLE_BARE,
|
||||
[
|
||||
AC_ARG_ENABLE(bare-cpu-cflags,
|
||||
AC_HELP_STRING([--enable-bare-cpu-cflags],[specify a particular cpu cflag (bare bsp specific)]),
|
||||
[AC_HELP_STRING([--enable-bare-cpu-cflags],
|
||||
[specify a particular cpu cflag (bare bsp specific)])],
|
||||
[case "${enableval}" in
|
||||
no) BARE_CPU_CFLAGS="" ;;
|
||||
*) BARE_CPU_CFLAGS="${enableval}" ;;
|
||||
@@ -9,7 +10,8 @@ esac],
|
||||
[BARE_CPU_CFLAGS=""])
|
||||
|
||||
AC_ARG_ENABLE(bare-cpu-model,
|
||||
AC_HELP_STRING([--enable-bare-cpu-model],[specify a particular cpu model (bare bsp specific)]),
|
||||
[AC_HELP_STRING([--enable-bare-cpu-model],
|
||||
[specify a particular cpu model (bare bsp specific)])],
|
||||
[case "${enableval}" in
|
||||
no) BARE_CPU_MODEL="" ;;
|
||||
*) BARE_CPU_MODEL="${enableval}" ;;
|
||||
|
||||
@@ -3,8 +3,8 @@ dnl $Id$
|
||||
AC_DEFUN(RTEMS_ENABLE_CXX,
|
||||
[
|
||||
AC_ARG_ENABLE(cxx,
|
||||
AC_HELP_STRING([--enable-cxx],[enable C++ support and build the rtems++
|
||||
library]),
|
||||
[AC_HELP_STRING([--enable-cxx],
|
||||
[enable C++ support and build the rtems++ library])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_HAS_CPLUSPLUS=yes ;;
|
||||
no) RTEMS_HAS_CPLUSPLUS=no ;;
|
||||
|
||||
@@ -2,7 +2,8 @@ dnl $Id$
|
||||
|
||||
AC_DEFUN(RTEMS_ENABLE_INLINES,
|
||||
[AC_ARG_ENABLE(rtems-inlines,
|
||||
AC_HELP_STRING([--enable-rtems-inlines],[enable RTEMS inline functions (default:enabled, disable to use macros)]),
|
||||
[AC_HELP_STRING([--enable-rtems-inlines],
|
||||
[enable RTEMS inline functions (default:enabled, disable to use macros)])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_USE_MACROS=no ;;
|
||||
no) RTEMS_USE_MACROS=yes ;;
|
||||
|
||||
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_ENABLE_ITRON,
|
||||
## AC_BEFORE([$0], [RTEMS_CHECK_ITRON_API])dnl
|
||||
|
||||
AC_ARG_ENABLE(itron,
|
||||
AC_HELP_STRING([--enable-itron],[enable itron interface]),
|
||||
[AC_HELP_STRING([--enable-itron],[enable itron interface])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_HAS_ITRON_API=yes ;;
|
||||
no) RTEMS_HAS_ITRON_API=no ;;
|
||||
|
||||
@@ -3,7 +3,8 @@ dnl $Id$
|
||||
AC_DEFUN(RTEMS_ENABLE_MULTIPROCESSING,
|
||||
[
|
||||
AC_ARG_ENABLE(multiprocessing,
|
||||
AC_HELP_STRING([--enable-multiprocessing],[enable multiprocessing interface]),
|
||||
[AC_HELP_STRING([--enable-multiprocessing],
|
||||
[enable multiprocessing interface])],
|
||||
[case "${enable_multiprocessing}" in
|
||||
yes) ;;
|
||||
no) ;;
|
||||
|
||||
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_ENABLE_NETWORKING,
|
||||
## AC_BEFORE([$0], [RTEMS_CHECK_NETWORKING])dnl
|
||||
|
||||
AC_ARG_ENABLE(networking,
|
||||
AC_HELP_STRING([--enable-networking],[enable TCP/IP stack]),
|
||||
[AC_HELP_STRING([--enable-networking],[enable TCP/IP stack])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_HAS_NETWORKING=yes ;;
|
||||
no) RTEMS_HAS_NETWORKING=no ;;
|
||||
|
||||
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_ENABLE_POSIX,
|
||||
## AC_BEFORE([$0], [RTEMS_CHECK_POSIX_API])dnl
|
||||
|
||||
AC_ARG_ENABLE(posix,
|
||||
AC_HELP_STRING([--enable-posix],[enable posix interface]),
|
||||
[AC_HELP_STRING([--enable-posix],[enable posix interface])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_HAS_POSIX_API=yes ;;
|
||||
no) RTEMS_HAS_POSIX_API=no ;;
|
||||
|
||||
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_ENABLE_RDBG,
|
||||
AC_BEFORE([$0], [RTEMS_CHECK_RDBG])dnl
|
||||
|
||||
AC_ARG_ENABLE(rdbg,
|
||||
AC_HELP_STRING([--enable-rdbg],[enable remote debugger]),
|
||||
[AC_HELP_STRING([--enable-rdbg],[enable remote debugger])],
|
||||
[case "${enableval}" in
|
||||
yes) RTEMS_HAS_RDBG=yes ;;
|
||||
no) RTEMS_HAS_RDBG=no ;;
|
||||
|
||||
@@ -5,10 +5,10 @@ dnl used by the toplevel configure script
|
||||
dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
|
||||
AC_DEFUN(RTEMS_ENABLE_RTEMSBSP,
|
||||
[
|
||||
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])dnl
|
||||
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
|
||||
AC_ARG_ENABLE(rtemsbsp,
|
||||
AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."],
|
||||
[BSPs to include in build]),
|
||||
[AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."],
|
||||
[BSPs to include in build])],
|
||||
[case "${enableval}" in
|
||||
yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp="bsp1 bsp2"]);;
|
||||
*) $1=$enableval;;
|
||||
|
||||
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_ENABLE_TESTS,
|
||||
# If the tests are enabled, then find all the test suite Makefiles
|
||||
AC_MSG_CHECKING([if the test suites are enabled? ])
|
||||
AC_ARG_ENABLE(tests,
|
||||
AC_HELP_STRING([--enable-tests],[enable tests (default:disabled)]),
|
||||
[AC_HELP_STRING([--enable-tests],[enable tests (default:disabled)])],
|
||||
[case "${enableval}" in
|
||||
yes) tests_enabled=yes ;;
|
||||
no) tests_enabled=no ;;
|
||||
|
||||
Reference in New Issue
Block a user