Changeset 14d34d84 in rtems
- Timestamp:
- 07/08/03 12:21:36 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 85956f9
- Parents:
- e30210ea
- Location:
- cpukit/libnetworking
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libnetworking/ChangeLog
re30210ea r14d34d84 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged into ../configure.ac). 4 * Makefile.am, libc/Makefile.am, lib/Makefile.am, wrapup/Makefile.am: 5 Reflect having merged configure.ac into ../configure.ac. 6 * kern/kern_mib.c: Use RTEMS_VERSION to setup osrelease. 7 1 8 2003-05-29 Joel Sherrill <joel@OARcorp.com> 2 9 -
cpukit/libnetworking/Makefile.am
re30210ea r14d34d84 5 5 ACLOCAL_AMFLAGS = -I ../aclocal 6 6 7 include $(top_srcdir)/ ../automake/multilib.am8 include $(top_srcdir)/ ../automake/compile.am9 include $(top_srcdir)/ ../automake/lib.am7 include $(top_srcdir)/automake/multilib.am 8 include $(top_srcdir)/automake/compile.am 9 include $(top_srcdir)/automake/lib.am 10 10 11 11 # Add -DFORWARD_PROTOCOL to enable UDP forwarding -- requires missing net/pf.h … … 18 18 SUBDIRS += wrapup 19 19 20 if HAS_NETWORKING 20 21 ## poll.h is not in the list because RTEMS does not have poll() 21 22 ## and installing poll.h confuses autoconf. … … 208 209 all-local: $(PREINSTALL_FILES) $(ARCH) $(LIB) 209 210 210 include $(top_srcdir)/../automake/subdirs.am 211 include $(top_srcdir)/../automake/local.am 211 endif 212 213 include $(top_srcdir)/automake/subdirs.am 214 include $(top_srcdir)/automake/local.am -
cpukit/libnetworking/kern/kern_mib.c
re30210ea r14d34d84 60 60 #ifdef __rtems__ 61 61 char machine[] = "SET ME"; 62 char osrelease[] = PACKAGE_VERSION;62 char osrelease[] = RTEMS_VERSION; 63 63 char ostype[] = "RTEMS"; 64 64 #endif -
cpukit/libnetworking/lib/Makefile.am
re30210ea r14d34d84 8 8 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 9 9 10 include $(top_srcdir)/ ../automake/multilib.am11 include $(top_srcdir)/ ../automake/compile.am12 include $(top_srcdir)/ ../automake/lib.am10 include $(top_srcdir)/automake/multilib.am 11 include $(top_srcdir)/automake/compile.am 12 include $(top_srcdir)/automake/lib.am 13 13 14 14 # … … 18 18 AM_CPPFLAGS += -DNOPOLL -DNOSELECT 19 19 20 if HAS_NETWORKING 20 21 $(LIB): $(OBJS) 21 22 $(make-library) 22 23 23 24 all-local: $(ARCH) $(LIB) 25 endif 24 26 25 27 .PRECIOUS: $(LIB) … … 27 29 EXTRA_DIST = README getprotoby.c rtems_bsdnet_ntp.c syslog.c tftpDriver.c 28 30 29 include $(top_srcdir)/ ../automake/local.am31 include $(top_srcdir)/automake/local.am -
cpukit/libnetworking/libc/Makefile.am
re30210ea r14d34d84 16 16 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 17 17 18 include $(top_srcdir)/ ../automake/multilib.am19 include $(top_srcdir)/ ../automake/compile.am20 include $(top_srcdir)/ ../automake/lib.am18 include $(top_srcdir)/automake/multilib.am 19 include $(top_srcdir)/automake/compile.am 20 include $(top_srcdir)/automake/lib.am 21 21 22 if HAS_NETWORKING 22 23 man_MANS = addr2ascii.3 byteorder.3 ethers.3 gethostbyname.3 getnetent.3 \ 23 24 getprotoent.3 getservent.3 inet.3 iso_addr.3 linkaddr.3 ns.3 rcmd.3 \ … … 34 35 35 36 all-local: $(ARCH) $(LIB) 37 endif 36 38 37 39 .PRECIOUS: $(LIB) … … 51 53 resolver.3 send.c strsep.c 52 54 53 include $(top_srcdir)/ ../automake/local.am55 include $(top_srcdir)/automake/local.am -
cpukit/libnetworking/wrapup/Makefile.am
re30210ea r14d34d84 9 9 LIB = $(ARCH)/libnetworking.a 10 10 11 include $(top_srcdir)/ ../automake/multilib.am12 include $(top_srcdir)/ ../automake/compile.am13 include $(top_srcdir)/ ../automake/lib.am11 include $(top_srcdir)/automake/multilib.am 12 include $(top_srcdir)/automake/compile.am 13 include $(top_srcdir)/automake/lib.am 14 14 15 # 16 # (OPTIONAL) Add local stuff here using += 17 # 18 15 if HAS_NETWORKING 19 16 $(LIB): $(OBJS) 20 17 $(make-library) 21 18 22 19 all-local: $(ARCH) $(LIB) 20 endif 23 21 24 include $(top_srcdir)/ ../automake/local.am22 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.