mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-21 05:38:26 +08:00
2002-11-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Further preparations for autoconf > 2.52: * aclocal/enable-inlines.m4: Use AS_IF instead of if/then/else. * aclocal/quoting.m4: Use `eval echo $ac_args` to unquote $ac_arg. * aclocal/target.m4: Use `eval echo $rtems_args` to unquote $ac_arg.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2002-11-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
Further preparations for autoconf > 2.52:
|
||||
* aclocal/enable-inlines.m4: Use AS_IF instead of if/then/else.
|
||||
* aclocal/quoting.m4: Use `eval echo $ac_args` to unquote $ac_arg.
|
||||
* aclocal/target.m4: Use `eval echo $rtems_args` to unquote $ac_arg.
|
||||
|
||||
2002-11-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* acinclude.m4: Adapations to autoconf > 2.52.
|
||||
|
||||
@@ -11,12 +11,7 @@ AC_DEFUN(RTEMS_ENABLE_INLINES,
|
||||
esac],[RTEMS_USE_MACROS=no])
|
||||
AC_SUBST(RTEMS_USE_MACROS)dnl
|
||||
|
||||
if test x"${RTEMS_USE_MACROS}" = x"yes";
|
||||
then
|
||||
AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros])
|
||||
else
|
||||
AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines])
|
||||
fi
|
||||
|
||||
|
||||
AS_IF([test x"${RTEMS_USE_MACROS}" = x"yes"],
|
||||
[AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros])],
|
||||
[AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines])])
|
||||
])
|
||||
|
||||
+2
-1
@@ -10,7 +10,8 @@ AC_DEFUN([RTEMS_CONFIGURE_ARGS_QUOTE],
|
||||
ac_prev=
|
||||
continue
|
||||
fi
|
||||
case $ac_arg in
|
||||
# the eval casts away sh quotes
|
||||
case `eval echo $ac_arg` in
|
||||
-cache-file | --cache-file | --cache-fil | --cache-fi \
|
||||
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
||||
ac_prev=cache_file ;;
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@ if test "$no_recursion" != yes; then
|
||||
rtems_prev=
|
||||
continue
|
||||
fi
|
||||
case "$rtems_arg" in
|
||||
case `eval echo $rtems_arg` in
|
||||
-cache-file | --cache-file | --cache-fil | --cache-fi \
|
||||
| --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
||||
rtems_prev=cache_file ;;
|
||||
|
||||
Reference in New Issue
Block a user