Changeset e73e576 in rtems
- Timestamp:
- 06/25/02 17:15:00 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2239edfd
- Parents:
- 3ebe28f
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/ChangeLog
r3ebe28f re73e576 1 2002-06-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Add librpc. AC_PROG_RANLIB. 4 * wrapup/Makefile.am: Add librpc. 5 Use relative path to lib*.a for 6 POSIX_OBJS, ITRON_OBJS, NETWORKING_OBJS. 7 1 8 2002-06-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/exec/configure.ac
r3ebe28f re73e576 32 32 RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]) 33 33 RTEMS_CANONICALIZE_TOOLS 34 AC_PROG_RANLIB 34 35 35 36 RTEMS_CHECK_NEWLIB … … 67 68 AC_CONFIG_SUBDIRS([libfs]) 68 69 AS_IF([test x"$HAS_NETWORKING" = x"yes"], 69 [AC_CONFIG_SUBDIRS(libnetworking )])70 [AC_CONFIG_SUBDIRS(libnetworking librpc)]) 70 71 71 72 RTEMS_DEFINE_POSIX_API -
c/src/exec/wrapup/Makefile.am
r3ebe28f re73e576 17 17 18 18 if HAS_POSIX 19 POSIX_OBJS = $(wildcard ../posix/src/$(ARCH)/*.o)19 POSIX_OBJS = ../posix/src/$(ARCH)/libposix.a 20 20 endif 21 21 22 22 if HAS_ITRON 23 ITRON_OBJS = $(wildcard ../itron/src/$(ARCH)/*.o)23 ITRON_OBJS = ../itron/src/$(ARCH)/libitron.a 24 24 endif 25 25 … … 34 34 if HAS_NETWORKING 35 35 NETWORKING_OBJS = \ 36 ../libnetworking/wrapup/$(ARCH)/libnetworking.a 36 ../libnetworking/wrapup/$(ARCH)/libnetworking.a \ 37 ../librpc/src/rpc/$(ARCH)/librpc.a \ 38 ../librpc/src/rpc/$(ARCH)/libxdr.a 37 39 endif 38 40 -
cpukit/ChangeLog
r3ebe28f re73e576 1 2002-06-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Add librpc. AC_PROG_RANLIB. 4 * wrapup/Makefile.am: Add librpc. 5 Use relative path to lib*.a for 6 POSIX_OBJS, ITRON_OBJS, NETWORKING_OBJS. 7 1 8 2002-06-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
cpukit/configure.ac
r3ebe28f re73e576 32 32 RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]) 33 33 RTEMS_CANONICALIZE_TOOLS 34 AC_PROG_RANLIB 34 35 35 36 RTEMS_CHECK_NEWLIB … … 67 68 AC_CONFIG_SUBDIRS([libfs]) 68 69 AS_IF([test x"$HAS_NETWORKING" = x"yes"], 69 [AC_CONFIG_SUBDIRS(libnetworking )])70 [AC_CONFIG_SUBDIRS(libnetworking librpc)]) 70 71 71 72 RTEMS_DEFINE_POSIX_API -
cpukit/wrapup/Makefile.am
r3ebe28f re73e576 17 17 18 18 if HAS_POSIX 19 POSIX_OBJS = $(wildcard ../posix/src/$(ARCH)/*.o)19 POSIX_OBJS = ../posix/src/$(ARCH)/libposix.a 20 20 endif 21 21 22 22 if HAS_ITRON 23 ITRON_OBJS = $(wildcard ../itron/src/$(ARCH)/*.o)23 ITRON_OBJS = ../itron/src/$(ARCH)/libitron.a 24 24 endif 25 25 … … 34 34 if HAS_NETWORKING 35 35 NETWORKING_OBJS = \ 36 ../libnetworking/wrapup/$(ARCH)/libnetworking.a 36 ../libnetworking/wrapup/$(ARCH)/libnetworking.a \ 37 ../librpc/src/rpc/$(ARCH)/librpc.a \ 38 ../librpc/src/rpc/$(ARCH)/libxdr.a 37 39 endif 38 40
Note: See TracChangeset
for help on using the changeset viewer.