Changeset e05468fb in rtems
- Timestamp:
- 11/06/02 11:16:52 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 54508fd
- Parents:
- 8ecc042a
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r8ecc042a re05468fb 1 2002-11-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Further preparations for autoconf > 2.52: 4 * aclocal/enable-inlines.m4: Use AS_IF instead of if/then/else. 5 * aclocal/quoting.m4: Use `eval echo $ac_args` to unquote $ac_arg. 6 * aclocal/target.m4: Use `eval echo $rtems_args` to unquote $ac_arg. 7 1 8 2002-11-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
aclocal/enable-inlines.m4
r8ecc042a re05468fb 12 12 AC_SUBST(RTEMS_USE_MACROS)dnl 13 13 14 if test x"${RTEMS_USE_MACROS}" = x"yes"; 15 then 16 AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros]) 17 else 18 AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines]) 19 fi 20 21 14 AS_IF([test x"${RTEMS_USE_MACROS}" = x"yes"], 15 [AC_DEFINE_UNQUOTED(USE_MACROS,1,[if using macros])], 16 [AC_DEFINE_UNQUOTED(USE_INLINES,1,[if using inlines])]) 22 17 ]) -
aclocal/quoting.m4
r8ecc042a re05468fb 11 11 continue 12 12 fi 13 case $ac_arg in 13 # the eval casts away sh quotes 14 case `eval echo $ac_arg` in 14 15 -cache-file | --cache-file | --cache-fil | --cache-fi \ 15 16 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) -
aclocal/target.m4
r8ecc042a re05468fb 29 29 continue 30 30 fi 31 case "$rtems_arg"in31 case `eval echo $rtems_arg` in 32 32 -cache-file | --cache-file | --cache-fil | --cache-fi \ 33 33 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
Note: See TracChangeset
for help on using the changeset viewer.