Changeset 3959276e in rtems for aclocal/enable-inlines.m4


Ignore:
Timestamp:
11/26/03 05:32:03 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
dfc099fd
Parents:
de691e68
Message:

2003-11-26 Ralf Corsepius <corsepiu@…>

  • aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/path-ksh.m4, aclocal/project-root.m4, aclocal/rtems-top.m4, aclocal/tool-paths.m4, acinclude.m4: Fix underquoting to silence automake-1.8.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • aclocal/enable-inlines.m4

    rde691e68 r3959276e  
    11dnl $Id$
    22
    3 AC_DEFUN(RTEMS_ENABLE_INLINES,
     3AC_DEFUN([RTEMS_ENABLE_INLINES],
    44[AC_ARG_ENABLE(rtems-inlines,
    5 [AC_HELP_STRING([--enable-rtems-inlines],
    6 [enable RTEMS inline functions (default:enabled, disable to use macros)])],
     5AC_HELP_STRING([--enable-rtems-inlines],[enable RTEMS inline functions (default:enabled, disable to use macros)]),
    76[case "${enableval}" in
    8   yes) RTEMS_USE_MACROS=no ;;
    9   no) RTEMS_USE_MACROS=yes ;;
    10   *)  AC_MSG_ERROR(bad value ${enableval} for disable-rtems-inlines option) ;;
    11 esac],[RTEMS_USE_MACROS=no])
    12 AC_SUBST(RTEMS_USE_MACROS)dnl
    13 
    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])])
     7  yes) enable_rtems_inlines=yes ;;
     8  no) enable_rtems_inlines=no ;;
     9  *)  AC_MSG_ERROR(bad value ${enableval} for enable-rtems-inlines option) ;;
     10esac],[enable_rtems_inlines=yes])
    1711])
Note: See TracChangeset for help on using the changeset viewer.