From 314a962f43cf6582ab0a5076418cc0bf5af28d3e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 29 Oct 2002 14:37:34 +0000 Subject: 2002-10-29 Ralf Corsepius * 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). --- ChangeLog | 15 +++++++++++++++ aclocal/enable-bare.m4 | 6 ++++-- aclocal/enable-cxx.m4 | 4 ++-- aclocal/enable-inlines.m4 | 3 ++- aclocal/enable-itron.m4 | 2 +- aclocal/enable-multiprocessing.m4 | 3 ++- aclocal/enable-networking.m4 | 2 +- aclocal/enable-posix.m4 | 2 +- aclocal/enable-rdbg.m4 | 2 +- aclocal/enable-rtemsbsp.m4 | 6 +++--- aclocal/enable-tests.m4 | 2 +- 11 files changed, 33 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index b5ee5b38f6..62d401bcfb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2002-10-29 Ralf Corsepius + + * 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 * aclocal/enable-rtemsbsp.m4: Remove '\' in AC_MSG_ERROR diff --git a/aclocal/enable-bare.m4 b/aclocal/enable-bare.m4 index 9f739ad8c1..43219461f8 100644 --- a/aclocal/enable-bare.m4 +++ b/aclocal/enable-bare.m4 @@ -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}" ;; diff --git a/aclocal/enable-cxx.m4 b/aclocal/enable-cxx.m4 index 84f5d3f745..5ef4987941 100644 --- a/aclocal/enable-cxx.m4 +++ b/aclocal/enable-cxx.m4 @@ -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 ;; diff --git a/aclocal/enable-inlines.m4 b/aclocal/enable-inlines.m4 index 972f78b733..bf30ceedad 100644 --- a/aclocal/enable-inlines.m4 +++ b/aclocal/enable-inlines.m4 @@ -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 ;; diff --git a/aclocal/enable-itron.m4 b/aclocal/enable-itron.m4 index e49fa68c9f..3157ce0641 100644 --- a/aclocal/enable-itron.m4 +++ b/aclocal/enable-itron.m4 @@ -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 ;; diff --git a/aclocal/enable-multiprocessing.m4 b/aclocal/enable-multiprocessing.m4 index 3a575713a5..129de0a735 100644 --- a/aclocal/enable-multiprocessing.m4 +++ b/aclocal/enable-multiprocessing.m4 @@ -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) ;; diff --git a/aclocal/enable-networking.m4 b/aclocal/enable-networking.m4 index 92ea0e0a7f..47801fff7c 100644 --- a/aclocal/enable-networking.m4 +++ b/aclocal/enable-networking.m4 @@ -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 ;; diff --git a/aclocal/enable-posix.m4 b/aclocal/enable-posix.m4 index 0e0ff92e6e..13be1417dd 100644 --- a/aclocal/enable-posix.m4 +++ b/aclocal/enable-posix.m4 @@ -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 ;; diff --git a/aclocal/enable-rdbg.m4 b/aclocal/enable-rdbg.m4 index 7b8de11b0b..8fa0cc8532 100644 --- a/aclocal/enable-rdbg.m4 +++ b/aclocal/enable-rdbg.m4 @@ -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 ;; diff --git a/aclocal/enable-rtemsbsp.m4 b/aclocal/enable-rtemsbsp.m4 index 2663c06dd4..10ffcf6827 100644 --- a/aclocal/enable-rtemsbsp.m4 +++ b/aclocal/enable-rtemsbsp.m4 @@ -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;; diff --git a/aclocal/enable-tests.m4 b/aclocal/enable-tests.m4 index cfc187424f..027dc212c0 100644 --- a/aclocal/enable-tests.m4 +++ b/aclocal/enable-tests.m4 @@ -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 ;; -- cgit v1.2.3