Changeset 8a79786 in rtems
- Timestamp:
- 05/29/02 17:00:59 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3e39b47
- Parents:
- f3e9ad0
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libnetworking/ChangeLog
rf3e9ad0 r8a79786 1 2002-05-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Relocate c/src/libnetworking. 4 * Makefile.am: Reflect moval. 5 * machine/Makefile.am: Ditto. 6 * net/Makefile.am: Ditto. 7 * lib/Makefile.am: Ditto. 8 * netinet/Makefile.am: Ditto. 9 * vm/Makefile.am: Ditto. 10 * libc/Makefile.am: Ditto. 11 * sys/Makefile.am: Ditto. 12 * arpa/Makefile.am: Ditto. 13 * nfs/Makefile.am: Ditto. 14 * kern/Makefile.am: Ditto. 15 * rtems/Makefile.am: Ditto. 16 * configure.ac: Dittp. 17 * wrapup/Makefile.am: Ditto. Remove references to networking apps. 18 1 19 2002-05-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 20 -
c/src/exec/libnetworking/Makefile.am
rf3e9ad0 r8a79786 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../../../ aclocal5 ACLOCAL_AMFLAGS = -I ../../../../aclocal 6 6 7 SUBDIRS = arpa kern machine sys vm lib libc net netinet nfs rtems \ 8 rtems_servers pppd rtems_telnetd rtems_webserver wrapup 7 SUBDIRS = arpa kern machine sys vm lib libc net netinet nfs rtems 8 # SUBDIRS += rtems_servers pppd rtems_telnetd rtems_webserver 9 SUBDIRS += wrapup 9 10 10 11 include_HEADERS = \ … … 24 25 EXTRA_DIST = CHANGELOG 25 26 26 include $(top_srcdir)/../../../ automake/subdirs.am27 include $(top_srcdir)/../../../ automake/local.am27 include $(top_srcdir)/../../../../automake/subdirs.am 28 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/arpa/Makefile.am
rf3e9ad0 r8a79786 19 19 all-local: $(PREINSTALL_FILES) 20 20 21 include $(top_srcdir)/../../../ automake/local.am21 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/configure.ac
rf3e9ad0 r8a79786 6 6 AC_INIT([rtems-c-src-libnetworking],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) 7 7 AC_CONFIG_SRCDIR([arpa]) 8 RTEMS_TOP(../../.. )9 AC_CONFIG_AUX_DIR(../../.. )8 RTEMS_TOP(../../../..) 9 AC_CONFIG_AUX_DIR(../../../..) 10 10 11 11 RTEMS_CANONICAL_TARGET_CPU … … 18 18 RTEMS_ENABLE_POSIX 19 19 20 RTEMS_ENV_RTEMS BSP20 RTEMS_ENV_RTEMSCPU 21 21 22 22 RTEMS_CHECK_CPU … … 46 46 netinet/Makefile 47 47 nfs/Makefile 48 pppd/Makefile49 48 rtems/Makefile 50 rtems_servers/Makefile51 rtems_telnetd/Makefile52 rtems_webserver/Makefile53 49 wrapup/Makefile 54 50 ]) -
c/src/exec/libnetworking/kern/Makefile.am
rf3e9ad0 r8a79786 12 12 OBJS = $(C_O_FILES) 13 13 14 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg15 include $(top_srcdir)/../../../ automake/compile.am16 include $(top_srcdir)/../../../ automake/lib.am14 include $(top_srcdir)/../../../../automake/multilib.am 15 include $(top_srcdir)/../../../../automake/compile.am 16 include $(top_srcdir)/../../../../automake/lib.am 17 17 18 18 # … … 33 33 uipc_socket2.c 34 34 35 include $(top_srcdir)/../../../ automake/local.am35 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/lib/Makefile.am
rf3e9ad0 r8a79786 12 12 OBJS = $(C_O_FILES) 13 13 14 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg15 include $(top_srcdir)/../../../ automake/compile.am16 include $(top_srcdir)/../../../ automake/lib.am14 include $(top_srcdir)/../../../../automake/multilib.am 15 include $(top_srcdir)/../../../../automake/compile.am 16 include $(top_srcdir)/../../../../automake/lib.am 17 17 18 18 # … … 31 31 EXTRA_DIST = README getprotoby.c rtems_bsdnet_ntp.c syslog.c tftpDriver.c 32 32 33 include $(top_srcdir)/../../../ automake/local.am33 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/libc/Makefile.am
rf3e9ad0 r8a79786 20 20 OBJS = $(C_O_FILES) 21 21 22 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg23 include $(top_srcdir)/../../../ automake/compile.am24 include $(top_srcdir)/../../../ automake/lib.am22 include $(top_srcdir)/../../../../automake/multilib.am 23 include $(top_srcdir)/../../../../automake/compile.am 24 include $(top_srcdir)/../../../../automake/lib.am 25 25 26 26 man_MANS = addr2ascii.3 byteorder.3 ethers.3 gethostbyname.3 getnetent.3 \ … … 55 55 resolver.3 send.c strsep.c 56 56 57 include $(top_srcdir)/../../../ automake/local.am57 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/machine/Makefile.am
rf3e9ad0 r8a79786 20 20 all-local: $(PREINSTALL_FILES) 21 21 22 include $(top_srcdir)/../../../ automake/local.am22 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/net/Makefile.am
rf3e9ad0 r8a79786 15 15 OBJS = $(C_O_FILES) 16 16 17 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg18 include $(top_srcdir)/../../../ automake/compile.am19 include $(top_srcdir)/../../../ automake/lib.am17 include $(top_srcdir)/../../../../automake/multilib.am 18 include $(top_srcdir)/../../../../automake/compile.am 19 include $(top_srcdir)/../../../../automake/lib.am 20 20 21 21 # … … 49 49 $(INSTALL_DATA) $< $@ 50 50 51 include $(top_srcdir)/../../../ automake/local.am51 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/netinet/Makefile.am
rf3e9ad0 r8a79786 17 17 OBJS = $(C_O_FILES) 18 18 19 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg20 include $(top_srcdir)/../../../ automake/compile.am21 include $(top_srcdir)/../../../ automake/lib.am19 include $(top_srcdir)/../../../../automake/multilib.am 20 include $(top_srcdir)/../../../../automake/compile.am 21 include $(top_srcdir)/../../../../automake/lib.am 22 22 23 23 # … … 54 54 $(INSTALL_DATA) $< $@ 55 55 56 include $(top_srcdir)/../../../ automake/local.am56 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/nfs/Makefile.am
rf3e9ad0 r8a79786 14 14 OBJS = $(C_O_FILES) 15 15 16 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg17 include $(top_srcdir)/../../../ automake/compile.am18 include $(top_srcdir)/../../../ automake/lib.am16 include $(top_srcdir)/../../../../automake/multilib.am 17 include $(top_srcdir)/../../../../automake/compile.am 18 include $(top_srcdir)/../../../../automake/lib.am 19 19 20 20 # … … 45 45 $(INSTALL_DATA) $< $@ 46 46 47 include $(top_srcdir)/../../../ automake/local.am47 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/rtems/Makefile.am
rf3e9ad0 r8a79786 29 29 30 30 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 31 include $(top_srcdir)/../../../ automake/compile.am32 include $(top_srcdir)/../../../ automake/lib.am31 include $(top_srcdir)/../../../../automake/compile.am 32 include $(top_srcdir)/../../../../automake/lib.am 33 33 34 34 # … … 51 51 rtems_showudpstat.c rtems_syscall.c sghostname.c 52 52 53 include $(top_srcdir)/../../../ automake/local.am53 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/sys/Makefile.am
rf3e9ad0 r8a79786 22 22 all-local: $(PREINSTALL_FILES) 23 23 24 include $(top_srcdir)/../../../ automake/local.am24 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/vm/Makefile.am
rf3e9ad0 r8a79786 21 21 all-local: $(PREINSTALL_FILES) 22 22 23 include $(top_srcdir)/../../../ automake/local.am23 include $(top_srcdir)/../../../../automake/local.am -
c/src/exec/libnetworking/wrapup/Makefile.am
rf3e9ad0 r8a79786 4 4 5 5 6 if HAS_POSIX 7 POSIX_PIECES = rtems_webserver 8 endif 9 10 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers \ 11 rtems_telnetd pppd $(POSIX_PIECES) 6 NET_O_PIECES = kern lib libc net netinet nfs rtems 12 7 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o) 13 8 LIB = $(ARCH)/libnetworking.a 14 9 15 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg16 include $(top_srcdir)/../../../ automake/compile.am17 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 18 13 19 14 # … … 33 28 .PRECIOUS: $(LIB) 34 29 35 include $(top_srcdir)/../../../ automake/local.am30 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/ChangeLog
rf3e9ad0 r8a79786 1 2002-05-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 Relocate c/src/libnetworking. 4 * Makefile.am: Reflect moval. 5 * machine/Makefile.am: Ditto. 6 * net/Makefile.am: Ditto. 7 * lib/Makefile.am: Ditto. 8 * netinet/Makefile.am: Ditto. 9 * vm/Makefile.am: Ditto. 10 * libc/Makefile.am: Ditto. 11 * sys/Makefile.am: Ditto. 12 * arpa/Makefile.am: Ditto. 13 * nfs/Makefile.am: Ditto. 14 * kern/Makefile.am: Ditto. 15 * rtems/Makefile.am: Ditto. 16 * configure.ac: Dittp. 17 * wrapup/Makefile.am: Ditto. Remove references to networking apps. 18 1 19 2002-05-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 20 -
cpukit/libnetworking/Makefile.am
rf3e9ad0 r8a79786 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../../../ aclocal5 ACLOCAL_AMFLAGS = -I ../../../../aclocal 6 6 7 SUBDIRS = arpa kern machine sys vm lib libc net netinet nfs rtems \ 8 rtems_servers pppd rtems_telnetd rtems_webserver wrapup 7 SUBDIRS = arpa kern machine sys vm lib libc net netinet nfs rtems 8 # SUBDIRS += rtems_servers pppd rtems_telnetd rtems_webserver 9 SUBDIRS += wrapup 9 10 10 11 include_HEADERS = \ … … 24 25 EXTRA_DIST = CHANGELOG 25 26 26 include $(top_srcdir)/../../../ automake/subdirs.am27 include $(top_srcdir)/../../../ automake/local.am27 include $(top_srcdir)/../../../../automake/subdirs.am 28 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/arpa/Makefile.am
rf3e9ad0 r8a79786 19 19 all-local: $(PREINSTALL_FILES) 20 20 21 include $(top_srcdir)/../../../ automake/local.am21 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/configure.ac
rf3e9ad0 r8a79786 6 6 AC_INIT([rtems-c-src-libnetworking],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) 7 7 AC_CONFIG_SRCDIR([arpa]) 8 RTEMS_TOP(../../.. )9 AC_CONFIG_AUX_DIR(../../.. )8 RTEMS_TOP(../../../..) 9 AC_CONFIG_AUX_DIR(../../../..) 10 10 11 11 RTEMS_CANONICAL_TARGET_CPU … … 18 18 RTEMS_ENABLE_POSIX 19 19 20 RTEMS_ENV_RTEMS BSP20 RTEMS_ENV_RTEMSCPU 21 21 22 22 RTEMS_CHECK_CPU … … 46 46 netinet/Makefile 47 47 nfs/Makefile 48 pppd/Makefile49 48 rtems/Makefile 50 rtems_servers/Makefile51 rtems_telnetd/Makefile52 rtems_webserver/Makefile53 49 wrapup/Makefile 54 50 ]) -
cpukit/libnetworking/kern/Makefile.am
rf3e9ad0 r8a79786 12 12 OBJS = $(C_O_FILES) 13 13 14 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg15 include $(top_srcdir)/../../../ automake/compile.am16 include $(top_srcdir)/../../../ automake/lib.am14 include $(top_srcdir)/../../../../automake/multilib.am 15 include $(top_srcdir)/../../../../automake/compile.am 16 include $(top_srcdir)/../../../../automake/lib.am 17 17 18 18 # … … 33 33 uipc_socket2.c 34 34 35 include $(top_srcdir)/../../../ automake/local.am35 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/lib/Makefile.am
rf3e9ad0 r8a79786 12 12 OBJS = $(C_O_FILES) 13 13 14 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg15 include $(top_srcdir)/../../../ automake/compile.am16 include $(top_srcdir)/../../../ automake/lib.am14 include $(top_srcdir)/../../../../automake/multilib.am 15 include $(top_srcdir)/../../../../automake/compile.am 16 include $(top_srcdir)/../../../../automake/lib.am 17 17 18 18 # … … 31 31 EXTRA_DIST = README getprotoby.c rtems_bsdnet_ntp.c syslog.c tftpDriver.c 32 32 33 include $(top_srcdir)/../../../ automake/local.am33 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/libc/Makefile.am
rf3e9ad0 r8a79786 20 20 OBJS = $(C_O_FILES) 21 21 22 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg23 include $(top_srcdir)/../../../ automake/compile.am24 include $(top_srcdir)/../../../ automake/lib.am22 include $(top_srcdir)/../../../../automake/multilib.am 23 include $(top_srcdir)/../../../../automake/compile.am 24 include $(top_srcdir)/../../../../automake/lib.am 25 25 26 26 man_MANS = addr2ascii.3 byteorder.3 ethers.3 gethostbyname.3 getnetent.3 \ … … 55 55 resolver.3 send.c strsep.c 56 56 57 include $(top_srcdir)/../../../ automake/local.am57 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/machine/Makefile.am
rf3e9ad0 r8a79786 20 20 all-local: $(PREINSTALL_FILES) 21 21 22 include $(top_srcdir)/../../../ automake/local.am22 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/net/Makefile.am
rf3e9ad0 r8a79786 15 15 OBJS = $(C_O_FILES) 16 16 17 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg18 include $(top_srcdir)/../../../ automake/compile.am19 include $(top_srcdir)/../../../ automake/lib.am17 include $(top_srcdir)/../../../../automake/multilib.am 18 include $(top_srcdir)/../../../../automake/compile.am 19 include $(top_srcdir)/../../../../automake/lib.am 20 20 21 21 # … … 49 49 $(INSTALL_DATA) $< $@ 50 50 51 include $(top_srcdir)/../../../ automake/local.am51 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/netinet/Makefile.am
rf3e9ad0 r8a79786 17 17 OBJS = $(C_O_FILES) 18 18 19 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg20 include $(top_srcdir)/../../../ automake/compile.am21 include $(top_srcdir)/../../../ automake/lib.am19 include $(top_srcdir)/../../../../automake/multilib.am 20 include $(top_srcdir)/../../../../automake/compile.am 21 include $(top_srcdir)/../../../../automake/lib.am 22 22 23 23 # … … 54 54 $(INSTALL_DATA) $< $@ 55 55 56 include $(top_srcdir)/../../../ automake/local.am56 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/nfs/Makefile.am
rf3e9ad0 r8a79786 14 14 OBJS = $(C_O_FILES) 15 15 16 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg17 include $(top_srcdir)/../../../ automake/compile.am18 include $(top_srcdir)/../../../ automake/lib.am16 include $(top_srcdir)/../../../../automake/multilib.am 17 include $(top_srcdir)/../../../../automake/compile.am 18 include $(top_srcdir)/../../../../automake/lib.am 19 19 20 20 # … … 45 45 $(INSTALL_DATA) $< $@ 46 46 47 include $(top_srcdir)/../../../ automake/local.am47 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/rtems/Makefile.am
rf3e9ad0 r8a79786 29 29 30 30 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 31 include $(top_srcdir)/../../../ automake/compile.am32 include $(top_srcdir)/../../../ automake/lib.am31 include $(top_srcdir)/../../../../automake/compile.am 32 include $(top_srcdir)/../../../../automake/lib.am 33 33 34 34 # … … 51 51 rtems_showudpstat.c rtems_syscall.c sghostname.c 52 52 53 include $(top_srcdir)/../../../ automake/local.am53 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/sys/Makefile.am
rf3e9ad0 r8a79786 22 22 all-local: $(PREINSTALL_FILES) 23 23 24 include $(top_srcdir)/../../../ automake/local.am24 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/vm/Makefile.am
rf3e9ad0 r8a79786 21 21 all-local: $(PREINSTALL_FILES) 22 22 23 include $(top_srcdir)/../../../ automake/local.am23 include $(top_srcdir)/../../../../automake/local.am -
cpukit/libnetworking/wrapup/Makefile.am
rf3e9ad0 r8a79786 4 4 5 5 6 if HAS_POSIX 7 POSIX_PIECES = rtems_webserver 8 endif 9 10 NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers \ 11 rtems_telnetd pppd $(POSIX_PIECES) 6 NET_O_PIECES = kern lib libc net netinet nfs rtems 12 7 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o) 13 8 LIB = $(ARCH)/libnetworking.a 14 9 15 include $( RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg16 include $(top_srcdir)/../../../ automake/compile.am17 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 18 13 19 14 # … … 33 28 .PRECIOUS: $(LIB) 34 29 35 include $(top_srcdir)/../../../ automake/local.am30 include $(top_srcdir)/../../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.