Changeset e05468fb in rtems for aclocal/enable-inlines.m4


Ignore:
Timestamp:
11/06/02 11:16:52 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
54508fd
Parents:
8ecc042a
Message:

2002-11-06 Ralf Corsepius <corsepiu@…>

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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • aclocal/enable-inlines.m4

    r8ecc042a re05468fb  
    1212AC_SUBST(RTEMS_USE_MACROS)dnl
    1313
    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 
     14AS_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])])
    2217])
Note: See TracChangeset for help on using the changeset viewer.