Changeset dcfba35 in rtems for cpukit/configure.ac
- Timestamp:
- 11/24/03 09:57:09 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2f6c188
- Parents:
- 8af72be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/configure.ac
r8af72be rdcfba35 46 46 RTEMS_CHECK_NETWORKING 47 47 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)53 48 AC_DEFINE(RTEMS_VERSION,["][_RTEMS_VERSION]["],[RTEMS version string]) 54 49 … … 103 98 [if RTEMS_DEBUG is enabled]) 104 99 105 RTEMS_CPUOPT([ USE_INLINES],106 [ ! test x"${RTEMS_USE_MACROS}" = x"yes"],100 RTEMS_CPUOPT([RTEMS_INLINES], 101 [test x"${enable_rtems_inlines}" = x"yes"], 107 102 [1], 108 103 [if using inlines]) … … 256 251 AM_CONDITIONAL(NEWLIB,test x"$RTEMS_USE_NEWLIB" = x"yes") 257 252 258 AM_CONDITIONAL(INLINE,test x"$ INLINEdir" = x"inline" )259 AM_CONDITIONAL(MACROS,test x"$ INLINEdir" = x"macros" )253 AM_CONDITIONAL(INLINE,test x"$enable_rtems_inlines" = x"yes" ) 254 AM_CONDITIONAL(MACROS,test x"$enable_rtems_inlines" = x"no" ) 260 255 AM_CONDITIONAL(HAS_MP,test x"$HAS_MP" = x"yes" ) 261 256
Note: See TracChangeset
for help on using the changeset viewer.