diff -r -c net-tools-1.33/Makefile net-tools-1.33.strip/Makefile *** net-tools-1.33/Makefile Tue May 20 16:47:32 1997 --- net-tools-1.33.strip/Makefile Tue Jun 24 17:10:53 1997 *************** *** 98,104 **** # Compiler and Linker Options # -I/usr/src/linux/include is needed, if you dont have up-to-date # kernelheaders, like some debian systems do. ! COPTS = -O2 -Wall -fomit-frame-pointer -I/usr/src/linux/include # -DDEBUG LOPTS = # Definitions for IPv6 Support. Read README.ipv6 for more information. INET6HDR = # -I/usr/ipv6/i-I/usr/ipv6/include --- 98,104 ---- # Compiler and Linker Options # -I/usr/src/linux/include is needed, if you dont have up-to-date # kernelheaders, like some debian systems do. ! COPTS = -O3 -Wall -fomit-frame-pointer -I/usr/src/linux/include # -DDEBUG LOPTS = # Definitions for IPv6 Support. Read README.ipv6 for more information. INET6HDR = # -I/usr/ipv6/i-I/usr/ipv6/include diff -r -c net-tools-1.33/arp.c net-tools-1.33.strip/arp.c *** net-tools-1.33/arp.c Mon May 19 21:20:57 1997 --- net-tools-1.33.strip/arp.c Tue Jun 24 18:10:46 1997 *************** *** 1,4 **** - usage und man page, info text von alexey /* * arp This file contains an implementation of the command * that maintains the kernel's ARP cache. It is derived --- 1,3 ---- diff -r -c net-tools-1.33/config.in net-tools-1.33.strip/config.in *** net-tools-1.33/config.in Mon May 19 19:34:48 1997 --- net-tools-1.33.strip/config.in Tue Jun 24 17:04:23 1997 *************** *** 91,96 **** --- 91,97 ---- * * (Hardware types supported by 1.3.x Kernels) * + bool 'STRIP (Metricom radio) support' HAVE_HWSTRIP y bool 'Token ring (generic) support' HAVE_HWTR y bool 'AX25 (Packet Radio) support' HAVE_HWAX25 y bool 'NET/ROM (Packet Radio) support' HAVE_HWNETROM y diff -r -c net-tools-1.33/lib/Makefile net-tools-1.33.strip/lib/Makefile *** net-tools-1.33/lib/Makefile Mon May 19 18:54:15 1997 --- net-tools-1.33.strip/lib/Makefile Tue Jun 24 17:06:57 1997 *************** *** 31,37 **** # ! HWOBJS = hw.o loopback.o slip.o ether.o fddi.o ax25.o ppp.o arcnet.o tr.o tunnel.o frame.o sit.o AFOBJS = unix.o inet.o inet6.o ax25.o ipx.o ddp.o ipx.o netrom.o af.o AFGROBJS = inet_gr.o inet6_gr.o ipx_gr.o ddp_gr.o netrom_gr.o ax25_gr.o getroute.o AFSROBJS = inet_sr.o inet6_sr.o netrom_sr.o ipx_sr.o setroute.o --- 31,37 ---- # ! HWOBJS = hw.o loopback.o slip.o ether.o fddi.o ax25.o ppp.o arcnet.o tr.o tunnel.o frame.o sit.o strip.o AFOBJS = unix.o inet.o inet6.o ax25.o ipx.o ddp.o ipx.o netrom.o af.o AFGROBJS = inet_gr.o inet6_gr.o ipx_gr.o ddp_gr.o netrom_gr.o ax25_gr.o getroute.o AFSROBJS = inet_sr.o inet6_sr.o netrom_sr.o ipx_sr.o setroute.o diff -r -c net-tools-1.33/lib/hw.c net-tools-1.33.strip/lib/hw.c *** net-tools-1.33/lib/hw.c Mon May 19 19:03:52 1997 --- net-tools-1.33.strip/lib/hw.c Tue Jun 24 17:02:01 1997 *************** *** 43,48 **** --- 43,49 ---- extern struct hwtype slip6_hwtype; extern struct hwtype cslip6_hwtype; extern struct hwtype adaptive_hwtype; + extern struct hwtype strip_hwtype; extern struct hwtype ether_hwtype; extern struct hwtype fddi_hwtype; *************** *** 71,76 **** --- 72,80 ---- &slip6_hwtype, &cslip6_hwtype, &adaptive_hwtype, + #endif + #if HAVE_HWSTRIP + &strip_hwtype, #endif #if HAVE_HWETHER ðer_hwtype, Only in net-tools-1.33.strip/lib: strip.c