busybox/networking
Rob Landley 193c8c7383 #ifdef reduction infrastructure, based on an argument between Shaun Jackman,
Rob Landley, and others.

Currently CONFIG options are defined or undefined, so we chop out code with
#ifdefs, ala:
#ifdef CONFIG_THING
  stuff();
#endif

This creates a new header file, bb_config.h, which sets the CONFIG entry to 1
or 0, and lets us do:

  if(CONFIG_THING) stuff();

And let the compiler do dead code elimination to get rid of it.  (Note: #ifdef
will still work because for the 1 case it's a static const int, not a #define.)
2005-07-27 06:55:36 +00:00
..
libiproute use toplevel ARFLAGS and update default ARFLAGS to be quiet 2005-07-27 01:09:24 +00:00
udhcp use toplevel ARFLAGS and update default ARFLAGS to be quiet 2005-07-27 01:09:24 +00:00
arping.c
Config.in import ether-wake applet by haveaniceday Bug 252 2005-05-11 03:59:53 +00:00
ether-wake.c import ether-wake applet by haveaniceday Bug 252 2005-05-11 03:59:53 +00:00
fakeidentd.c - remove extra/unneeded function call. testing svn 2005-06-24 03:47:57 +00:00
ftpgetput.c applying fix from: 2005-07-19 21:26:57 +00:00
hostname.c
httpd.c applying fix for: 2005-07-20 18:42:52 +00:00
ifconfig.c #ifdef reduction infrastructure, based on an argument between Shaun Jackman, 2005-07-27 06:55:36 +00:00
ifupdown.c
inetd.c applying fix from: 2005-07-19 21:19:20 +00:00
ip.c
ipaddr.c
ipcalc.c
iplink.c
iproute.c
iptunnel.c
Makefile
Makefile.in use toplevel ARFLAGS and update default ARFLAGS to be quiet 2005-07-27 01:09:24 +00:00
nameif.c
nc.c applying fix for: 2005-07-20 19:40:30 +00:00
netstat.c
nslookup.c
ping6.c
ping.c 2005-03-19 Shaun Jackman <sjackman@gmail.com> 2005-07-26 23:00:59 +00:00
route.c
telnet.c applying fix for: 2005-07-20 19:55:19 +00:00
telnetd.c Patch from Jason Schoon to add IPV6 support to telnetd. Reworked by Rob 2005-05-10 23:53:33 +00:00
tftp.c applying fix for: 2005-07-20 19:49:15 +00:00
traceroute.c much more concise fix for bug #45. just align the packet... 2005-07-20 11:55:08 +00:00
vconfig.c
wget.c
zcip.c