Changeset a7c1897 in rtems
- Timestamp:
- Jun 26, 2002, 12:52:38 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d2d5215
- Parents:
- b2d72c67
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/ChangeLog
rb2d72c67 ra7c1897 1 2002-06-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove references to RTEMS_BSP. 4 * src/Makefile.am: Add libposix.a. 5 1 6 2002-06-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/exec/posix/configure.ac
rb2d72c67 ra7c1897 27 27 RTEMS_CANONICALIZE_TOOLS 28 28 29 RTEMS_CHECK_MULTIPROCESSING (RTEMS_BSP)30 RTEMS_CHECK_POSIX_API (RTEMS_BSP)29 RTEMS_CHECK_MULTIPROCESSING 30 RTEMS_CHECK_POSIX_API 31 31 32 32 # If RTEMS macros are enabled, then use them. Otherwise, use inlines. … … 45 45 ## Refuse to build if bsp does not support libposix 46 46 if test "$HAS_POSIX_API" != "yes"; then 47 AC_MSG_ERROR([ BSP $RTEMS_BSP does not support libposix])47 AC_MSG_ERROR([libposix is not supported by this configuration]) 48 48 fi 49 49 -
c/src/exec/posix/src/Makefile.am
rb2d72c67 ra7c1897 3 3 ## 4 4 5 LIB=$(ARCH)/libposix.a 5 6 6 7 INCLUDES = -I. … … 97 98 AM_CPPFLAGS += -D__RTEMS_INSIDE__ 98 99 99 all-local: ${ARCH} ${OBJS} 100 all-local: ${ARCH} $(LIB) 101 102 $(LIB): ${OBJS} 103 $(make-library) 100 104 101 105 # temporary so we can see how many things are left to implement -
cpukit/posix/ChangeLog
rb2d72c67 ra7c1897 1 2002-06-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove references to RTEMS_BSP. 4 * src/Makefile.am: Add libposix.a. 5 1 6 2002-06-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
cpukit/posix/configure.ac
rb2d72c67 ra7c1897 27 27 RTEMS_CANONICALIZE_TOOLS 28 28 29 RTEMS_CHECK_MULTIPROCESSING (RTEMS_BSP)30 RTEMS_CHECK_POSIX_API (RTEMS_BSP)29 RTEMS_CHECK_MULTIPROCESSING 30 RTEMS_CHECK_POSIX_API 31 31 32 32 # If RTEMS macros are enabled, then use them. Otherwise, use inlines. … … 45 45 ## Refuse to build if bsp does not support libposix 46 46 if test "$HAS_POSIX_API" != "yes"; then 47 AC_MSG_ERROR([ BSP $RTEMS_BSP does not support libposix])47 AC_MSG_ERROR([libposix is not supported by this configuration]) 48 48 fi 49 49 -
cpukit/posix/src/Makefile.am
rb2d72c67 ra7c1897 3 3 ## 4 4 5 LIB=$(ARCH)/libposix.a 5 6 6 7 INCLUDES = -I. … … 97 98 AM_CPPFLAGS += -D__RTEMS_INSIDE__ 98 99 99 all-local: ${ARCH} ${OBJS} 100 all-local: ${ARCH} $(LIB) 101 102 $(LIB): ${OBJS} 103 $(make-library) 100 104 101 105 # temporary so we can see how many things are left to implement
Note: See TracChangeset
for help on using the changeset viewer.