Changeset dcfba35 in rtems for cpukit/configure.ac


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/configure.ac

    r8af72be rdcfba35  
    4646RTEMS_CHECK_NETWORKING
    4747
    48 # If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
    49 AS_IF([test "$RTEMS_USE_MACROS" = "yes"],
    50   [INLINEdir="macros"],
    51   [INLINEdir="inline"])
    52 AC_SUBST(INLINEdir)
    5348AC_DEFINE(RTEMS_VERSION,["][_RTEMS_VERSION]["],[RTEMS version string])
    5449
     
    10398  [if RTEMS_DEBUG is enabled])
    10499
    105 RTEMS_CPUOPT([USE_INLINES],
    106   [! test x"${RTEMS_USE_MACROS}" = x"yes"],
     100RTEMS_CPUOPT([RTEMS_INLINES],
     101  [test x"${enable_rtems_inlines}" = x"yes"],
    107102  [1],
    108103  [if using inlines])
     
    256251AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes")
    257252
    258 AM_CONDITIONAL(INLINE,test x"$INLINEdir" = x"inline" )
    259 AM_CONDITIONAL(MACROS,test x"$INLINEdir" = x"macros" )
     253AM_CONDITIONAL(INLINE,test x"$enable_rtems_inlines" = x"yes" )
     254AM_CONDITIONAL(MACROS,test x"$enable_rtems_inlines" = x"no" )
    260255AM_CONDITIONAL(HAS_MP,test x"$HAS_MP" = x"yes" )
    261256
Note: See TracChangeset for help on using the changeset viewer.