Changeset dcfba35 in rtems


Ignore:
Timestamp:
11/24/03 09:57:09 (20 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.
Location:
cpukit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cpukit/.cvsignore

    r8af72be rdcfba35  
    33config.cache
    44config.guess
     5config.h.in
    56config.log
    67config.status
  • cpukit/ChangeLog

    r8af72be rdcfba35  
     12003-11-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * configure.ac: Use RTEMS_INLINES instead of USE_INLINES.
     4        Elimimate INLINESdir.
     5        * aclocal/enable-inlines.m4: Ditto. Remove RTEMS_USE_MACROS.
     6        * .cvsignore: Add config.h.in.
     7
    182003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    29
  • 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 ])
  • 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.