Changeset 352c9b2 in rtems for c/src/exec/configure.in
- Timestamp:
- Nov 9, 1999, 10:07:23 PM (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ad502d18
- Parents:
- 1007c3c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/configure.in
r1007c3c r352c9b2 14 14 RTEMS_ENABLE_MULTIPROCESSING 15 15 RTEMS_ENABLE_POSIX 16 RTEMS_ENABLE_ITRON 16 17 RTEMS_ENABLE_INLINES 17 18 RTEMS_ENABLE_GCC28 … … 35 36 RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) 36 37 RTEMS_CHECK_POSIX_API(RTEMS_BSP) 38 RTEMS_CHECK_ITRON_API(RTEMS_BSP) 37 39 38 40 # If RTEMS macros are enabled, then use them. Otherwise, use inlines. … … 42 44 # The problem is that there is currently no code in posix/macros :) 43 45 AC_MSG_ERROR(Macros are not implemented for the POSIX API) 46 fi 47 if test "$HAS_ITRON_API" = "yes"; then 48 # The problem is that there is currently no code in itron/macros :) 49 AC_MSG_ERROR(Macros are not implemented for the ITRON API) 44 50 fi 45 51 else … … 52 58 53 59 AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes") 60 AM_CONDITIONAL(HAS_ITRON,test "$HAS_ITRON_API" = "yes") 54 61 55 62 if test "$HAS_POSIX_API" = "yes"; then 56 cfg_subdirs="posix" 63 cfg_subdirs="posix" 64 fi 65 if test "$HAS_ITRON_API" = "yes"; then 66 cfg_subdirs="$cfg_subdirs itron" 57 67 fi 58 68 AC_CONFIG_SUBDIRS($cfg_subdirs) … … 101 111 wrapup/Makefile 102 112 wrapup/rtems/Makefile 113 wrapup/itron/Makefile 103 114 wrapup/posix/Makefile 104 115 )
Note: See TracChangeset
for help on using the changeset viewer.