Changeset 3a8915e in rtems for c/src/lib/configure.in


Ignore:
Timestamp:
08/06/99 17:55:25 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2fe7208
Parents:
22544db9
Message:

Patch rtems-rc-19990709-6-diff from Ralf Corsepius <corsepiu@…>
applied. This modified many Makefiles and custom files and makes many more
settings (network, multiprocessing, etc) gnerated by autoconf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/configure.in

    r22544db9 r3a8915e  
    1414
    1515RTEMS_ENABLE_MULTIPROCESSING
    16 RTEMS_ENABLE_POSIX
    1716RTEMS_ENABLE_NETWORKING
    1817RTEMS_ENABLE_RDBG
    19 RTEMS_ENABLE_INLINES
    2018RTEMS_ENABLE_CXX
    2119RTEMS_ENABLE_GCC28
     
    5856RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
    5957RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
     58RTEMS_CHECK_CXX(RTEMS_BSP)
     59RTEMS_CHECK_NETWORKING(RTEMS_BSP)
    6060
    6161RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
     
    9999fi
    100100
     101if test "$HAS_MP" = "yes"; then
     102  makefiles="$makefiles libbsp/shmdr/Makefile"
     103fi
     104
    101105AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
    102106# find all the CPU dependent library Makefiles
     
    113117    ;;
    114118esac
    115 
    116 # If RTEMS macros are enabled, then use them.  Otherwise, use inlines.
    117 if test "$RTEMS_USE_MACROS" = "yes"; then
    118   inline_dir=macros
    119   if test "$RTEMS_HAS_POSIX_API" = "yes"; then
    120     # The problem is that there is currently no code in posix/macros :)
    121     AC_MSG_ERROR(Macros are not implemented for the POSIX API)
    122   fi
    123 else
    124   inline_dir=inline
    125 fi
    126119
    127120# If the TCP/IP stack is enabled, then find all TCP/IP Makefiles
     
    196189include/Makefile
    197190libbsp/Makefile
    198 libbsp/shmdr/Makefile
    199191libc/Makefile
    200192libcpu/Makefile
Note: See TracChangeset for help on using the changeset viewer.