Changeset e05468fb in rtems


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.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r8ecc042a re05468fb  
     12002-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
    182002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    29
  • 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])
  • aclocal/quoting.m4

    r8ecc042a re05468fb  
    1111      continue
    1212    fi
    13     case $ac_arg in
     13    # the eval casts away sh quotes
     14    case `eval echo $ac_arg` in
    1415    -cache-file | --cache-file | --cache-fil | --cache-fi \
    1516    | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  • aclocal/target.m4

    r8ecc042a re05468fb  
    2929      continue
    3030    fi
    31     case "$rtems_arg" in
     31    case `eval echo $rtems_arg` in
    3232    -cache-file | --cache-file | --cache-fil | --cache-fi \
    3333    | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
Note: See TracChangeset for help on using the changeset viewer.