forked from Imagelibrary/rtems
* 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).
22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
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)])],
|
|
[case "${enableval}" in
|
|
no) BARE_CPU_CFLAGS="" ;;
|
|
*) BARE_CPU_CFLAGS="${enableval}" ;;
|
|
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)])],
|
|
[case "${enableval}" in
|
|
no) BARE_CPU_MODEL="" ;;
|
|
*) BARE_CPU_MODEL="${enableval}" ;;
|
|
esac],
|
|
[BARE_CPU_MODEL=""])
|
|
])
|
|
|