Changeset dcfba35 in rtems for cpukit/aclocal/enable-inlines.m4


Ignore:
Timestamp:
11/24/03 09:57:09 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2f6c188
Parents:
8af72be
Message:

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

  • configure.ac: Use RTEMS_INLINES instead of USE_INLINES. Elimimate INLINESdir.
  • aclocal/enable-inlines.m4: Ditto. Remove RTEMS_USE_MACROS.
  • .cvsignore: Add config.h.in.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/aclocal/enable-inlines.m4

    r8af72be rdcfba35  
    55AC_HELP_STRING([--enable-rtems-inlines],[enable RTEMS inline functions (default:enabled, disable to use macros)]),
    66[case "${enableval}" in
    7   yes) RTEMS_USE_MACROS=no ;;
    8   no) RTEMS_USE_MACROS=yes ;;
    9   *)  AC_MSG_ERROR(bad value ${enableval} for disable-rtems-inlines option) ;;
    10 esac],[RTEMS_USE_MACROS=no])
    11 AC_SUBST(RTEMS_USE_MACROS)dnl
    12 
    13 AS_IF([test x"${RTEMS_USE_MACROS}" = x"yes"],[],[
    14   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])
    1511])
    16 
    17 
    18 ])
Note: See TracChangeset for help on using the changeset viewer.