This commit was manufactured by cvs2svn to create branch 'whiterussian'.
authorOpenWrt Development <openwrt-devel@lists.openwrt.org>
Thu, 1 Sep 2005 07:20:36 +0000 (07:20 +0000)
committerOpenWrt Development <openwrt-devel@lists.openwrt.org>
Thu, 1 Sep 2005 07:20:36 +0000 (07:20 +0000)
SVN-Revision: 1818

openwrt/package/kismet/patches/100-wrt54g_source.patch [new file with mode: 0644]
openwrt/package/kismet/patches/120-cleanup.patch [new file with mode: 0644]
openwrt/package/lighttpd/patches/500-configure_cross.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/100-uclibc-conf.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/110-uclibc-libtool-conf.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/300-001_ld_makefile_patch.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/300-006_better_file_error.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/300-012_check_ldrunpath_length.patch [new file with mode: 0644]
openwrt/toolchain/binutils/2.16.1/702-binutils-skip-comments.patch [new file with mode: 0644]

diff --git a/openwrt/package/kismet/patches/100-wrt54g_source.patch b/openwrt/package/kismet/patches/100-wrt54g_source.patch
new file mode 100644 (file)
index 0000000..3336a8f
--- /dev/null
@@ -0,0 +1,189 @@
+diff -urN kismet.old/kis_packsources.cc kismet.dev/kis_packsources.cc
+--- kismet.old/kis_packsources.cc      2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev/kis_packsources.cc      2005-08-23 00:59:04.465379568 +0200
+@@ -192,7 +192,7 @@
+                                        chancontrol_wlanng_avs, 1);
+     sourcetracker->RegisterPacketsource("wrt54g", 1, "na", 0,
+                                         pcapsource_wrt54g_registrant,
+-                                        monitor_wrt54g, NULL, NULL, 0);
++                                                                              monitor_wrt54g, unmonitor_wrt54g, chancontrol_wext, 0);
+ #else
+     REG_EMPTY_CARD(sourcetracker, "wlanng");
+     REG_EMPTY_CARD(sourcetracker, "wlanng_avs");
+diff -urN kismet.old/packetsourcetracker.cc kismet.dev/packetsourcetracker.cc
+--- kismet.old/packetsourcetracker.cc  2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev/packetsourcetracker.cc  2005-08-23 00:59:39.969982048 +0200
+@@ -986,6 +986,7 @@
+                     (meta_packsources[chanpak.meta_num]->device.c_str(), 
+                      chanpak.channel, errstr, 
+                      (void *) (meta_packsources[chanpak.meta_num]->capsource)) < 0) {
++#if 0
+                                       meta_packsources[chanpak.meta_num]->consec_errors++;
+@@ -1007,6 +1008,7 @@
+                                                                                                                                        CHANFLAG_FATAL));
+                                               continue;
+                                       }
++#endif
+                 } else {
+                                       // Otherwise reset the error count
+                                       meta_packsources[chanpak.meta_num]->consec_errors = 0;
+diff -urN kismet.old/pcapsource.cc kismet.dev/pcapsource.cc
+--- kismet.old/pcapsource.cc   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev/pcapsource.cc   2005-08-23 01:03:45.652632608 +0200
+@@ -115,6 +115,53 @@
+ u_char callback_data[MAX_PACKET_LEN];
+ // Open a source
++int PcapSourceWrt54g::OpenSource() {
++    channel = 0;
++
++    errstr[0] = '\0';
++
++    char *unconst = strdup("prism0");
++
++    pd = pcap_open_live(unconst, MAX_PACKET_LEN, 1, 1000, errstr);
++
++    #if defined (SYS_OPENBSD) || defined(SYS_NETBSD) && defined(HAVE_RADIOTAP)
++    /* Request desired DLT on multi-DLT systems that default to EN10MB. We do this
++       later anyway but doing it here ensures we have the desired DLT from the get go. */
++     pcap_set_datalink(pd, DLT_IEEE802_11_RADIO);
++    #endif
++
++    free(unconst);
++
++    if (strlen(errstr) > 0)
++        return -1; // Error is already in errstr
++
++    paused = 0;
++
++    errstr[0] = '\0';
++
++    num_packets = 0;
++
++    if (DatalinkType() < 0)
++        return -1;
++
++#ifdef HAVE_PCAP_NONBLOCK
++    pcap_setnonblock(pd, 1, errstr);
++#elif !defined(SYS_OPENBSD)
++    // do something clever  (Thanks to Guy Harris for suggesting this).
++    int save_mode = fcntl(pcap_get_selectable_fd(pd), F_GETFL, 0);
++    if (fcntl(pcap_get_selectable_fd(pd), F_SETFL, save_mode | O_NONBLOCK) < 0) {
++        snprintf(errstr, 1024, "fcntl failed, errno %d (%s)",
++                 errno, strerror(errno));
++    }
++#endif
++
++    if (strlen(errstr) > 0)
++        return -1; // Ditto
++    
++    return 1;
++}
++
++// Open a source
+ int PcapSource::OpenSource() {
+     channel = 0;
+@@ -1928,63 +1975,32 @@
+ int monitor_wrt54g(const char *in_dev, int initch, char *in_err, void **in_if, 
+                                  void *in_ext) {
+     char cmdline[2048];
+-      int mode;
+-      int wlmode = 0;
+-
+-#ifdef HAVE_LINUX_WIRELESS
+-    vector<string> devbits = StrTokenize(in_dev, ":");
+-    if (devbits.size() < 2) {
+-              snprintf(cmdline, 2048, "/usr/sbin/wl monitor 1");
++              snprintf(cmdline, 2048, "/usr/sbin/iwpriv %s set_monitor 1", in_dev);
+               if (RunSysCmd(cmdline) < 0) {
+-                      snprintf(in_err, 1024, "Unable to set mode using 'wl monitor 1'.  Some "
+-                                       "custom firmware images require you to specify the origial "
++                      snprintf(in_err, 1024, "Unable to set mode using 'iwpriv %s set_monitor 1'. "
++                                       "Some custom firmware images require you to specify the origial "
+                                        "device and a new dynamic device and use the iwconfig controls. "
+                                        "see the README for how to configure your capture source.");
+                       return -1;
+               }
+-    } else {
+-              // Get the mode ... If this doesn't work, try the old wl method.
+-              if (Iwconfig_Get_Mode(devbits[0].c_str(), in_err, &mode) < 0) {
+-                      fprintf(stderr, "WARNING:  Getting wireless mode via ioctls failed, "
+-                                      "defaulting to trying the 'wl' command.\n");
+-                      wlmode = 1;
+-              }
+-              if (wlmode == 1) {
+-                      snprintf(cmdline, 2048, "/usr/sbin/wl monitor 1");
+-                      if (RunSysCmd(cmdline) < 0) {
+-                              snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-                              return -1;
+-                      }
+-              } else if (mode != LINUX_WLEXT_MONITOR) {
+-                      // Set it
+-                      if (Iwconfig_Set_Mode(devbits[0].c_str(), in_err, 
+-                                                                LINUX_WLEXT_MONITOR) < 0) {
+-                              snprintf(in_err, STATUS_MAX, "Unable to set iwconfig monitor "
+-                                               "mode.  If you are using an older wrt54g, try specifying "
+-                                               "only the ethernet device, not ethX:prismX");
+-                              return -1;
+-                      }
++      return 1;
++}
++
++
++int unmonitor_wrt54g(const char *in_dev, int initch, char *in_err, void **in_if, 
++                                 void *in_ext) {
++    char cmdline[2048];
++
++              snprintf(cmdline, 2048, "/usr/sbin/iwpriv %s set_monitor 0", in_dev);
++              if (RunSysCmd(cmdline) < 0) {
++                      snprintf(in_err, 1024, "Unable to set mode using 'iwpriv %s set_monitor 0'. "
++                                       "Some custom firmware images require you to specify the origial "
++                                       "device and a new dynamic device and use the iwconfig controls. "
++                                       "see the README for how to configure your capture source.");
++                      return -1;
+               }
+-      }
+-#else
+-      snprintf(cmdline, 2048, "/usr/sbin/wl monitor 1");
+-      if (RunSysCmd(cmdline) < 0) {
+-              snprintf(in_err, 1024, "Unable to set mode using 'wl monitor 1'.  Some "
+-                               "custom firmware images require you to specify the origial "
+-                               "device and a new dynamic device and use the iwconfig controls. "
+-                               "see the README for how to configure your capture source. "
+-                               "Support for wireless extensions was not compiled in, so more "
+-                               "advanced modes of setting monitor mode are not available.");
+-              return -1;
+-      }
+-      fprintf(stderr, "WARNING:  Support for wireless extensions was not compiled "
+-                      "into this binary.  Using the iw* tools to set monitor mode will not "
+-                      "be available.  This may cause opening the source to fail on some "
+-                      "firmware versions.  To fix this, make sure wireless extensions are "
+-                      "available and found by the configure script when building Kismet.");
+-#endif
+       return 1;
+ }
+diff -urN kismet.old/pcapsource.h kismet.dev/pcapsource.h
+--- kismet.old/pcapsource.h    2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev/pcapsource.h    2005-08-23 01:04:26.057490136 +0200
+@@ -265,6 +265,7 @@
+     PcapSourceWrt54g(string in_name, string in_dev) : PcapSource(in_name, in_dev) { 
+         fcsbytes = 4;
+     }
++      int OpenSource();
+     int FetchPacket(kis_packet *packet, uint8_t *data, uint8_t *moddata);
+ protected:
+     carrier_type IEEE80211Carrier();
+@@ -412,6 +413,7 @@
+ int monitor_wlanng_avs(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext);
+ // linksys wrt54g monitoring
+ int monitor_wrt54g(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext);
++int unmonitor_wrt54g(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext);
+ #endif
+ // This should be expanded to handle BSD...
diff --git a/openwrt/package/kismet/patches/120-cleanup.patch b/openwrt/package/kismet/patches/120-cleanup.patch
new file mode 100644 (file)
index 0000000..1743080
--- /dev/null
@@ -0,0 +1,3113 @@
+diff -urN kismet.dev/Makefile.in kismet.dev2/Makefile.in
+--- kismet.dev/Makefile.in     2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/Makefile.in    2005-08-23 01:59:25.643220248 +0200
+@@ -39,26 +39,25 @@
+ DEPEND        = .depend
+ # Objects
+-PSO   = util.o ringbuf.o configfile.o speech.o ifcontrol.o iwcontrol.o packet.o \
+-              pcapsource.o prism2source.o wtapfilesource.o wsp100source.o \
+-              dronesource.o vihasource.o packetsourcetracker.o kis_packsources.o \
+-              wtapdump.o wtaplocaldump.o gpsdump.o airsnortdump.o fifodump.o \
+-              gpsd.o manuf.o \
++PSO   = util.o ringbuf.o configfile.o ifcontrol.o iwcontrol.o packet.o \
++              pcapsource.o manuf.o \
++              dronesource.o packetsourcetracker.o kis_packsources.o \
++              wtapdump.o wtaplocaldump.o airsnortdump.o fifodump.o \
+               packetracker.o timetracker.o alertracker.o finitestate.o \
+               getopt.o \
+               tcpserver.o server_protocols.o server_globals.o kismet_server.o 
+ PS    = kismet_server
+ DRONEO = util.o ringbuf.o configfile.o getopt.o ifcontrol.o iwcontrol.o packet.o \
+-              tcpstreamer.o prism2source.o pcapsource.o wtapfilesource.o wsp100source.o \
+-              dronesource.o vihasource.o packetsourcetracker.o kis_packsources.o \
+-              timetracker.o gpsd.o server_globals.o kismet_drone.o
++              tcpstreamer.o pcapsource.o \
++              dronesource.o packetsourcetracker.o kis_packsources.o \
++              timetracker.o server_globals.o kismet_drone.o
+ DRONE = kismet_drone
+-NCO   = util.o configfile.o speech.o manuf.o tcpclient.o \
++NCO   = util.o configfile.o manuf.o tcpclient.o \
+               frontend.o cursesfront.o \
+               panelfront.o panelfront_display.o panelfront_input.o \
+-              gpsd.o getopt.o kismet_client.o 
++              getopt.o kismet_client.o 
+ NC    = kismet_client
+ GPSLO = getopt.o util.o configfile.o expat.o manuf.o \
+diff -urN kismet.dev/cursesfront.cc kismet.dev2/cursesfront.cc
+--- kismet.dev/cursesfront.cc  2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/cursesfront.cc 2005-08-23 01:59:25.643220248 +0200
+@@ -30,7 +30,6 @@
+ // Enable the protocols we can use
+ void NCurseFront::AddClient(TcpClient *in_client) {
+     client = in_client;
+-    client->EnableProtocol("GPS");
+     client->EnableProtocol("INFO");
+     client->EnableProtocol("REMOVE");
+     client->EnableProtocol("NETWORK");
+@@ -88,32 +87,8 @@
+         mvwaddstr(netborder, 1, 2, "  SSID                        T W Ch  Data   LLC  Crypt  Wk Flags");
+     }
+-    char gpsdata[1024];
+-    float lat, lon, alt, spd, heading;
+     int mode;
+-    client->FetchLoc(&lat, &lon, &alt, &spd, &heading, &mode);
+-
+-    if (!(lat == 0 && lon == 0 && alt == 0 && spd == 0 && mode == 0)) {
+-
+-        char fix[16];
+-
+-        if (mode == -1)
+-            snprintf(fix, 16, "No signal");
+-        else if (mode == 2)
+-            snprintf(fix, 5, "2D");
+-        else if (mode == 3)
+-            snprintf(fix, 5, "3D");
+-        else
+-            snprintf(fix, 5, "NONE");
+-
+-        snprintf(gpsdata, 1024, "Lat %.3f Lon %.3f Alt %.3f Spd %.3f Fix %s",
+-                 lat, lon, alt, spd, fix);
+-
+-        mvwaddstr(netborder, LINES-statheight-1, 2, gpsdata);
+-
+-    }
+-
+     box(infoborder, '|', '-');
+     mvwaddstr(infoborder, 0, 2, "Info");
+diff -urN kismet.dev/dronesource.cc kismet.dev2/dronesource.cc
+--- kismet.dev/dronesource.cc  2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/dronesource.cc 2005-08-23 01:59:25.644220096 +0200
+@@ -201,9 +201,6 @@
+             return -1;
+         }
+-              // Grab the GPS info
+-              gps_enabled = vpkt.gps_enabled;
+-
+         stream_recv_bytes = 0;
+         // printf("debug - version packet valid\n\n");
+@@ -336,25 +333,6 @@
+     packet->encoding = (encoding_type) phdr.encoding;
+     packet->datarate = (uint32_t) ntohl(phdr.datarate);
+-      if (gps_enabled) {
+-              // If the drone is sending us GPS data, use it
+-              packet->gps_lat = Pair2Float((int16_t) ntohs(phdr.gps_lat),
+-                                                                       (int64_t) kis_ntoh64(phdr.gps_lat_mant));
+-              packet->gps_lon = Pair2Float((int16_t) ntohs(phdr.gps_lon),
+-                                                                       (int64_t) kis_ntoh64(phdr.gps_lon_mant));
+-              packet->gps_alt = Pair2Float((int16_t) ntohs(phdr.gps_alt),
+-                                                                       (int64_t) kis_ntoh64(phdr.gps_alt_mant));
+-              packet->gps_spd = Pair2Float((int16_t) ntohs(phdr.gps_spd),
+-                                                                       (int64_t) kis_ntoh64(phdr.gps_spd_mant));
+-              packet->gps_heading = Pair2Float((int16_t) ntohs(phdr.gps_heading),
+-                                                                               (int64_t) kis_ntoh64(phdr.gps_heading_mant));
+-              packet->gps_fix = phdr.gps_fix;
+-      } else if (gpsd != NULL) {
+-              // Otherwise, no
+-              gpsd->FetchLoc(&packet->gps_lat, &packet->gps_lon, &packet->gps_alt,
+-                                         &packet->gps_spd, &packet->gps_heading, &packet->gps_fix);
+-      }
+-
+     packet->data = data;
+     packet->moddata = moddata;
+     packet->modified = 0;
+diff -urN kismet.dev/dronesource.h kismet.dev2/dronesource.h
+--- kismet.dev/dronesource.h   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/dronesource.h  2005-08-23 01:59:25.644220096 +0200
+@@ -79,9 +79,6 @@
+     uint8_t databuf[MAX_PACKET_LEN];
+     unsigned int resyncing;
+-
+-      // Is the drone pushing GPS data to us?
+-      int gps_enabled;
+ };
+ // Nothing but a registrant for us
+diff -urN kismet.dev/frontend.cc kismet.dev2/frontend.cc
+--- kismet.dev/frontend.cc     2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/frontend.cc    2005-08-23 01:59:25.645219944 +0200
+@@ -248,33 +248,6 @@
+             }
+-            // Aggregate the GPS data
+-            if (wnet->aggregate_points > 0) {
+-                dnet->virtnet->aggregate_lat += wnet->aggregate_lat;
+-                dnet->virtnet->aggregate_lon += wnet->aggregate_lon;
+-                dnet->virtnet->aggregate_alt += wnet->aggregate_alt;
+-                dnet->virtnet->aggregate_points += wnet->aggregate_points;
+-            }
+-
+-            if (wnet->gps_fixed > dnet->virtnet->gps_fixed)
+-                dnet->virtnet->gps_fixed = wnet->gps_fixed;
+-            if (wnet->min_lat < dnet->virtnet->min_lat || dnet->virtnet->min_lat == 0)
+-                dnet->virtnet->min_lat = wnet->min_lat;
+-            if (wnet->min_lon < dnet->virtnet->min_lon || dnet->virtnet->min_lon == 0)
+-                dnet->virtnet->min_lon = wnet->min_lon;
+-            if (wnet->min_alt < dnet->virtnet->min_alt || dnet->virtnet->min_alt == 0)
+-                dnet->virtnet->min_alt = wnet->min_alt;
+-            if (wnet->min_spd < dnet->virtnet->min_spd || dnet->virtnet->min_spd == 0)
+-                dnet->virtnet->min_spd = wnet->min_spd;
+-            if (wnet->max_lat > dnet->virtnet->max_lat || dnet->virtnet->max_lat == 0)
+-                dnet->virtnet->max_lat = wnet->max_lat;
+-            if (wnet->max_lon > dnet->virtnet->max_lon || dnet->virtnet->max_lon == 0)
+-                dnet->virtnet->max_lon = wnet->max_lon;
+-            if (wnet->max_alt > dnet->virtnet->max_alt || dnet->virtnet->max_alt == 0)
+-                dnet->virtnet->max_alt = wnet->max_alt;
+-            if (wnet->max_spd > dnet->virtnet->max_spd || dnet->virtnet->max_spd == 0)
+-                dnet->virtnet->max_spd = wnet->max_spd;
+-
+             // Aggregate the carriers and encodings
+             dnet->virtnet->carrier_set |= wnet->carrier_set;
+             dnet->virtnet->encoding_set |= wnet->encoding_set;
+diff -urN kismet.dev/kis_packsources.cc kismet.dev2/kis_packsources.cc
+--- kismet.dev/kis_packsources.cc      2005-08-23 00:59:04.465379568 +0200
++++ kismet.dev2/kis_packsources.cc     2005-08-23 02:01:08.585570632 +0200
+@@ -60,13 +60,8 @@
+ #if defined(HAVE_LIBPCAP) && defined(HAVE_LINUX_WIRELESS)
+     // Linux wext-driven cards
+-    sourcetracker->RegisterPacketsource("cisco", 1, "IEEE80211b", 6,
+-                                       pcapsource_wext_registrant,
+-                                       monitor_cisco, unmonitor_cisco, 
+-                                       chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("cisco_wifix", 1, "IEEE80211b", 6,
+-                                       pcapsource_ciscowifix_registrant,
+-                                       monitor_cisco_wifix, NULL, NULL, 1);
++      REG_EMPTY_CARD(sourcetracker, "cisco");
++      REG_EMPTY_CARD(sourcetracker, "cisco_wifix");
+     sourcetracker->RegisterPacketsource("hostap", 1, "IEEE80211b", 6,
+                                        pcapsource_wext_registrant,
+                                        monitor_hostap, unmonitor_hostap, 
+@@ -79,21 +74,9 @@
+                                         pcapsource_wext_registrant,
+                                         monitor_orinoco, unmonitor_orinoco,
+                                         chancontrol_orinoco, 1);
+-    sourcetracker->RegisterPacketsource("acx100", 1, "IEEE80211b", 6,
+-                                       pcapsource_wextfcs_registrant,
+-                                       monitor_acx100, unmonitor_acx100, 
+-                                       chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("admtek", 1, "IEEE80211b", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_admtek, unmonitor_admtek,
+-                                        chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("vtar5k", 1, "IEEE80211a", 36,
+-                                       pcapsource_wext_registrant,
+-                                       monitor_vtar5k, NULL, chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("atmel_usb", 1, "IEEE80211b", 6,
+-                                       pcapsource_wext_registrant,
+-                                       monitor_wext, unmonitor_wext, 
+-                                       chancontrol_wext, 1);
++      REG_EMPTY_CARD(sourcetracker, "acx100");
++      REG_EMPTY_CARD(sourcetracker, "admtek");
++      REG_EMPTY_CARD(sourcetracker, "vtar5k");
+     sourcetracker->RegisterPacketsource("madwifi_a", 1, "IEEE80211a", 36,
+                                         pcapsource_wextfcs_registrant,
+@@ -121,38 +104,14 @@
+                                         monitor_prism54g, unmonitor_prism54g,
+                                         chancontrol_prism54g, 1);
+-    sourcetracker->RegisterPacketsource("wlanng_wext", 1, "IEEE80211b", 6,
+-                                        pcapsource_wlanng_registrant,
+-                                        monitor_wlanng_avs, NULL,
+-                                        chancontrol_wext, 1);
+-
+-    sourcetracker->RegisterPacketsource("ipw2100", 1, "IEEE80211b", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_ipw2100, unmonitor_ipw2100,
+-                                        chancontrol_ipw2100, 1);
+-
+-    sourcetracker->RegisterPacketsource("ipw2200", 1, "IEEE80211g", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_ipw2200, unmonitor_ipw2200,
+-                                        chancontrol_ipw2200, 1);
+-
+-    sourcetracker->RegisterPacketsource("ipw2915", 1, "IEEE80211ab", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_ipw2200, unmonitor_ipw2200,
+-                                        chancontrol_ipw2200, 1);
++      REG_EMPTY_CARD(sourcetracker, "wlanng_wext");
++      REG_EMPTY_CARD(sourcetracker, "ipw2100");
++      REG_EMPTY_CARD(sourcetracker, "ipw2200");
++      REG_EMPTY_CARD(sourcetracker, "ipw2915");
++    REG_EMPTY_CARD(sourcetracker, "rt2400");
++    REG_EMPTY_CARD(sourcetracker, "rt2500");
++    REG_EMPTY_CARD(sourcetracker, "rt8180");
+-    sourcetracker->RegisterPacketsource("rt2400", 1, "IEEE80211b", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_wext, unmonitor_wext,
+-                                        chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("rt2500", 1, "IEEE80211g", 6,
+-                                        pcapsource_11g_registrant,
+-                                        monitor_wext, unmonitor_wext,
+-                                        chancontrol_wext, 1);
+-    sourcetracker->RegisterPacketsource("rt8180", 1, "IEEE80211b", 6,
+-                                        pcapsource_wext_registrant,
+-                                        monitor_wext, unmonitor_wext,
+-                                        chancontrol_wext, 1);
+ #else
+     // Register the linuxwireless pcap stuff as null
+@@ -182,31 +141,13 @@
+     REG_EMPTY_CARD(sourcetracker, "wlanng_wext");
+ #endif
+-#if defined(HAVE_LIBPCAP) && defined(SYS_LINUX)
+-    sourcetracker->RegisterPacketsource("wlanng", 1, "IEEE80211b", 6,
+-                                       pcapsource_wlanng_registrant,
+-                                       monitor_wlanng, NULL, chancontrol_wlanng, 1);
+-    sourcetracker->RegisterPacketsource("wlanng_avs", 1, "IEEE80211b", 6,
+-                                       pcapsource_wlanng_registrant,
+-                                       monitor_wlanng_avs, NULL,
+-                                       chancontrol_wlanng_avs, 1);
+     sourcetracker->RegisterPacketsource("wrt54g", 1, "na", 0,
+                                         pcapsource_wrt54g_registrant,
+-                                                                              monitor_wrt54g, unmonitor_wrt54g, chancontrol_wext, 0);
+-#else
++                                        monitor_wrt54g, unmonitor_wrt54g, chancontrol_wext, 0);
++
+     REG_EMPTY_CARD(sourcetracker, "wlanng");
+     REG_EMPTY_CARD(sourcetracker, "wlanng_avs");
+-    REG_EMPTY_CARD(sourcetracker, "wrt54g");
+-#endif
+-
+-#if defined(SYS_LINUX) && defined(HAVE_LINUX_NETLINK)
+-    sourcetracker->RegisterPacketsource("wlanng_legacy", 1, "IEEE80211b", 6,
+-                                        prism2source_registrant,
+-                                        monitor_wlanng_legacy, NULL,
+-                                        chancontrol_wlanng_legacy, 1);
+-#else
+     REG_EMPTY_CARD(sourcetracker, "wlanng_legacy");
+-#endif
+ #if defined(HAVE_LIBPCAP) && defined(SYS_OPENBSD)
+     sourcetracker->RegisterPacketsource("cisco_openbsd", 1, "IEEE80211b", 6,
+@@ -240,29 +181,11 @@
+     REG_EMPTY_CARD(sourcetracker, "radiotap_bsd_b");
+ #endif
+-#if defined(HAVE_LIBWIRETAP)
+-    sourcetracker->RegisterPacketsource("wtapfile", 0, "na", 0,
+-                                       wtapfilesource_registrant,
+-                                       NULL, NULL, NULL, 0);
+-#else
+     REG_EMPTY_CARD(sourcetracker, "wtapfile");
+-#endif
+-#if defined(HAVE_WSP100)
+-    sourcetracker->RegisterPacketsource("wsp100", 0, "IEEE80211b", 6,
+-                                        wsp100source_registrant,
+-                                        monitor_wsp100, NULL, chancontrol_wsp100, 0);
+-#else
+     REG_EMPTY_CARD(sourcetracker, "wsp100");
+-#endif
+-#if defined(HAVE_VIHAHEADERS)
+-    sourcetracker->RegisterPacketsource("viha", 1, "IEEE80211b", 6,
+-                                        vihasource_registrant,
+-                                        NULL, NULL, chancontrol_viha, 0);
+-#else
+     REG_EMPTY_CARD(sourcetracker, "viha");
+-#endif
+     return 1;
+ }
+diff -urN kismet.dev/kis_packsources.h kismet.dev2/kis_packsources.h
+--- kismet.dev/kis_packsources.h       2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/kis_packsources.h      2005-08-23 01:59:25.646219792 +0200
+@@ -22,11 +22,7 @@
+ #include "config.h"
+ #include "packetsource.h"
+-#include "prism2source.h"
+ #include "pcapsource.h"
+-#include "wtapfilesource.h"
+-#include "wsp100source.h"
+-#include "vihasource.h"
+ #include "dronesource.h"
+ #include "packetsourcetracker.h"
+diff -urN kismet.dev/kismet_client.cc kismet.dev2/kismet_client.cc
+--- kismet.dev/kismet_client.cc        2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/kismet_client.cc       2005-08-23 01:59:25.648219488 +0200
+@@ -28,7 +28,6 @@
+ #include "cursesfront.h"
+ #include "panelfront.h"
+ #include "configfile.h"
+-#include "speech.h"
+ #ifndef exec_name
+ char *exec_name;
+@@ -47,11 +46,7 @@
+ char *configfile;
+ char *uiconfigfile;
+ char *server = NULL;
+-int sound = -1;
+-int speech = -1;
+ int flite = 0;
+-int speech_encoding = 0;
+-string speech_sentence_encrypted, speech_sentence_unencrypted;
+ unsigned int metric = 0;
+ unsigned int reconnect = 0;
+@@ -59,20 +54,9 @@
+ string configdir, groupfile;
+ FILE *group_file = NULL;
+-// Pipe file descriptor pairs and fd's
+-int soundpair[2];
+-int speechpair[2];
+-pid_t soundpid = -1, speechpid = -1;
+-
+ // Catch our interrupt
+ void CatchShutdown(int sig) {
+-    // Kill our sound players
+-    if (soundpid > 0)
+-        kill(soundpid, 9);
+-    if (speechpid > 0)
+-        kill(speechpid, 9);
+-
+     if (group_track) {
+         if ((group_file = fopen(groupfile.c_str(), "w")) == NULL) {
+             fprintf(stderr, "WARNING: Unable to open '%s' for writing, groups will not be saved.\n",
+@@ -116,215 +100,6 @@
+     exit(0);
+ }
+-// Subprocess sound handler
+-void SoundHandler(int *fds, const char *player, map<string, string> soundmap) {
+-    int read_sock = fds[0];
+-
+-    close(fds[1]);
+-
+-    signal(SIGPIPE, PipeHandler);
+-
+-    fd_set rset;
+-
+-    char data[1024];
+-
+-    pid_t sndpid = -1;
+-    int harvested = 1;
+-
+-    while (1) {
+-        FD_ZERO(&rset);
+-        FD_SET(read_sock, &rset);
+-        char *end;
+-
+-        memset(data, 0, 1024);
+-
+-        if (harvested == 0) {
+-            // We consider a wait error to be a sign that the child pid died
+-            // so we flag it as harvested and keep on going
+-            pid_t harvestpid = waitpid(sndpid, NULL, WNOHANG);
+-            if (harvestpid == -1 || harvestpid == sndpid)
+-                harvested = 1;
+-        }
+-
+-        struct timeval tim;
+-        tim.tv_sec = 1;
+-        tim.tv_usec = 0;
+-
+-        if (select(read_sock + 1, &rset, NULL, NULL, &tim) < 0) {
+-            if (errno != EINTR) {
+-                exit(1);
+-            }
+-        }
+-
+-        if (FD_ISSET(read_sock, &rset)) {
+-            int ret;
+-            ret = read(read_sock, data, 1024);
+-
+-            // We'll die off if we get a read error, and we'll let kismet on the
+-            // other side detact that it died
+-            if (ret <= 0 && (errno != EAGAIN && errno != EPIPE))
+-                exit(1);
+-
+-            if ((end = strstr(data, "\n")) == NULL)
+-                continue;
+-
+-            end[0] = '\0';
+-        }
+-
+-        if (data[0] == '\0')
+-            continue;
+-
+-        // If we've harvested the process, spawn a new one and watch it
+-        // instead.  Otherwise, we just let go of the data we read
+-        if (harvested == 1) {
+-            // Only take the first line
+-            char *nl;
+-            if ((nl = strchr(data, '\n')) != NULL)
+-                *nl = '\0';
+-
+-            char snd[1024];
+-
+-            if (soundmap.size() == 0)
+-                snprintf(snd, 1024, "%s", data);
+-            if (soundmap.find(data) != soundmap.end())
+-                snprintf(snd, 1024, "%s", soundmap[data].c_str());
+-            else
+-                continue;
+-
+-            char plr[1024];
+-            snprintf(plr, 1024, "%s", player);
+-
+-            harvested = 0;
+-            if ((sndpid = fork()) == 0) {
+-                // Suppress errors
+-                int nulfd = open("/dev/null", O_RDWR);
+-                dup2(nulfd, 1);
+-                dup2(nulfd, 2);
+-
+-                char * const echoarg[] = { plr, snd, NULL };
+-                execve(echoarg[0], echoarg, NULL);
+-            }
+-        }
+-
+-        data[0] = '\0';
+-    }
+-}
+-
+-// Subprocess speech handler
+-void SpeechHandler(int *fds, const char *player) {
+-    int read_sock = fds[0];
+-    close(fds[1]);
+-
+-    fd_set rset;
+-
+-    char data[1024];
+-
+-    pid_t sndpid = -1;
+-    int harvested = 1;
+-
+-    while (1) {
+-        FD_ZERO(&rset);
+-        FD_SET(read_sock, &rset);
+-        //char *end;
+-
+-        memset(data, 0, 1024);
+-
+-        struct timeval tim;
+-        tim.tv_sec = 1;
+-        tim.tv_usec = 0;
+-
+-        if (select(read_sock + 1, &rset, NULL, NULL, &tim) < 0) {
+-            if (errno != EINTR) {
+-                exit(1);
+-            }
+-        }
+-
+-        if (harvested == 0) {
+-            // We consider a wait error to be a sign that the child pid died
+-            // so we flag it as harvested and keep on going
+-            pid_t harvestpid = waitpid(sndpid, NULL, WNOHANG);
+-            if (harvestpid == -1 || harvestpid == sndpid)
+-                harvested = 1;
+-        }
+-
+-        if (FD_ISSET(read_sock, &rset)) {
+-            int ret;
+-            ret = read(read_sock, data, 1024);
+-
+-            // We'll die off if we get a read error, and we'll let kismet on the
+-            // other side detact that it died
+-            if (ret <= 0 && (errno != EAGAIN && errno != EPIPE))
+-                exit(1);
+-
+-            data[ret] = '\0';
+-
+-        }
+-
+-        if (data[0] == '\0')
+-            continue;
+-
+-        // If we've harvested the process, spawn a new one and watch it
+-        // instead.  Otherwise, we just let go of the data we read
+-        if (harvested == 1) {
+-            harvested = 0;
+-            if ((sndpid = fork()) == 0) {
+-                // Only take the first line
+-                char *nl;
+-                if ((nl = strchr(data, '\n')) != NULL)
+-                    *nl = '\0';
+-
+-                // Make sure it's shell-clean
+-                MungeToShell(data, strlen(data));
+-                char spk_call[1024];
+-                snprintf(spk_call, 1024, "echo \"(%s\\\"%s\\\")\" | %s "
+-                                               ">/dev/null 2>/dev/null",
+-                                               flite ? "": "SayText ", data, player);
+-
+-                system(spk_call);
+-
+-                exit(0);
+-            }
+-        }
+-
+-        data[0] = '\0';
+-    }
+-}
+-
+-
+-int PlaySound(string in_sound) {
+-
+-    char snd[1024];
+-
+-    snprintf(snd, 1024, "%s\n", in_sound.c_str());
+-
+-    if (write(soundpair[1], snd, strlen(snd)) < 0) {
+-        char status[STATUS_MAX];
+-        snprintf(status, STATUS_MAX,
+-                 "ERROR: Could not write to sound pipe.  Stopping sound.");
+-        gui->WriteStatus(status);
+-
+-        return 0;
+-    }
+-
+-    return 1;
+-}
+-
+-int SayText(string in_text) {
+-    char snd[1024];
+-
+-    snprintf(snd, 1024, "%s\n", in_text.c_str());
+-
+-    if (write(speechpair[1], snd, strlen(snd)) < 0) {
+-        char status[STATUS_MAX];
+-        snprintf(status, STATUS_MAX,
+-                 "ERROR: Could not write to speech pipe.  Stopping speech.");
+-        gui->WriteStatus(status);
+-
+-        return 0;
+-    }
+-
+-    return 1;
+-}
+ int main(int argc, char *argv[]) {
+     exec_name = argv[0];
+@@ -345,8 +120,6 @@
+     char guihost[1024];
+     int guiport = -1;
+-    int gpsmode = -1;
+-
+     configfile = NULL;
+     uiconfigfile = NULL;
+@@ -391,7 +164,6 @@
+             fprintf(stderr, "Using alternate UI config file: %s\n", uiconfigfile);
+             break;
+         case 'q':
+-            sound = 0;
+             break;
+         case 'g':
+             reqgui = strdup(optarg);
+@@ -515,70 +287,6 @@
+         server = strdup(gui_conf->FetchOpt("host").c_str());
+     }
+-    if (gui_conf->FetchOpt("sound") == "true" && sound == -1) {
+-        if (gui_conf->FetchOpt("soundplay") != "") {
+-            sndplay = gui_conf->FetchOpt("soundplay");
+-            sound = 1;
+-
+-            if (gui_conf->FetchOpt("soundopts") != "")
+-                sndplay += " " + gui_conf->FetchOpt("soundopts");
+-
+-            if (gui_conf->FetchOpt("sound_new") != "")
+-                wav_map["new"] = gui_conf->FetchOpt("sound_new");
+-            if (gui_conf->FetchOpt("sound_new_wep") != "")
+-                wav_map["new_wep"] = gui_conf->FetchOpt("sound_new_wep");
+-            if (gui_conf->FetchOpt("sound_traffic") != "")
+-                wav_map["traffic"] = gui_conf->FetchOpt("sound_traffic");
+-            if (gui_conf->FetchOpt("sound_junktraffic") != "")
+-                wav_map["junktraffic"] = gui_conf->FetchOpt("sound_junktraffic");
+-            if (gui_conf->FetchOpt("sound_gpslock") != "")
+-                wav_map["gpslock"] = gui_conf->FetchOpt("sound_gpslock");
+-            if (gui_conf->FetchOpt("sound_gpslost") != "")
+-                wav_map["gpslost"] = gui_conf->FetchOpt("sound_gpslost");
+-            if (gui_conf->FetchOpt("sound_alert") != "")
+-                wav_map["alert"] = gui_conf->FetchOpt("sound_alert");
+-
+-        } else {
+-            fprintf(stderr, "ERROR:  Sound alerts enabled but no sound playing binary specified.\n");
+-            sound = 0;
+-        }
+-    } else if (sound == -1)
+-        sound = 0;
+-
+-    /* Added by Shaw Innes 17/2/02 */
+-    if (gui_conf->FetchOpt("speech") == "true" && speech == -1) {
+-        if (gui_conf->FetchOpt("festival") != "") {
+-            festival = strdup(gui_conf->FetchOpt("festival").c_str());
+-            speech = 1;
+-
+-                      if (gui_conf->FetchOpt("flite") == "true")
+-                              flite = 1;
+-
+-            string speechtype = gui_conf->FetchOpt("speech_type");
+-
+-            if (!strcasecmp(speechtype.c_str(), "nato"))
+-                speech_encoding = SPEECH_ENCODING_NATO;
+-            else if (!strcasecmp(speechtype.c_str(), "spell"))
+-                speech_encoding = SPEECH_ENCODING_SPELL;
+-            else
+-                speech_encoding = SPEECH_ENCODING_NORMAL;
+-
+-            // Make sure we have encrypted text lines
+-            if (gui_conf->FetchOpt("speech_encrypted") == "" || gui_conf->FetchOpt("speech_unencrypted") == "") {
+-                fprintf(stderr, "ERROR:  Speech request but speech_encrypted or speech_unencrypted line missing.\n");
+-                speech = 0;
+-            }
+-
+-            speech_sentence_encrypted = gui_conf->FetchOpt("speech_encrypted");
+-            speech_sentence_unencrypted = gui_conf->FetchOpt("speech_unencrypted");
+-
+-        } else {
+-            fprintf(stderr, "ERROR: Speech alerts enabled but no path to festival has been specified.\n");
+-            speech = 0;
+-        }
+-    } else if (speech == -1)
+-        speech = 0;
+-
+     if (gui_conf->FetchOpt("decay") != "") {
+         if (sscanf(gui_conf->FetchOpt("decay").c_str(), "%d", &decay) != 1) {
+             fprintf(stderr, "FATAL:  Illegal config file value for decay.\n");
+@@ -636,45 +344,6 @@
+         }
+     }
+-    // Fork and find the sound options
+-    if (sound) {
+-        if (pipe(soundpair) == -1) {
+-            fprintf(stderr, "WARNING:  Unable to create pipe for audio.  Disabling sound.\n");
+-            sound = 0;
+-        } else {
+-            soundpid = fork();
+-
+-            if (soundpid < 0) {
+-                fprintf(stderr, "WARNING:  Unable to fork for audio.  Disabling sound.\n");
+-                sound = 0;
+-            } else if (soundpid == 0) {
+-                SoundHandler(soundpair, sndplay.c_str(), wav_map);
+-                exit(0);
+-            }
+-
+-            close(soundpair[0]);
+-        }
+-    }
+-
+-    if (speech) {
+-        if (pipe(speechpair) == -1) {
+-            fprintf(stderr, "WARNING:  Unable to create pipe for speech.  Disabling speech.\n");
+-            speech = 0;
+-        } else {
+-            speechpid = fork();
+-
+-            if (speechpid < 0) {
+-                fprintf(stderr, "WARNING:  Unable to fork for speech.  Disabling speech.\n");
+-                speech = 0;
+-            } else if (speechpid == 0) {
+-                SpeechHandler(speechpair, festival);
+-                exit(0);
+-            }
+-
+-            close(speechpair[0]);
+-        }
+-    }
+-
+     if (kismet_serv.Connect(guiport, guihost) < 0) {
+         fprintf(stderr, "FATAL:  Could not connect to %s:%d.\n", guihost, guiport);
+         CatchShutdown(-1);
+@@ -884,53 +553,13 @@
+                     }
+                     if (pollret != 0) {
+-                        if (pollret == CLIENT_ALERT)
+-                            if (sound == 1)
+-                                sound = PlaySound("alert");
+-
+                         if (strlen(tcpcli->FetchStatus()) != 0) {
+                             gui->WriteStatus(tcpcli->FetchStatus());
+                             // gui->DrawDisplay();
+                         }
+-                        // The GPS only gets updated for the primary client
+-                        if (tcpcli == primary_client) {
+-                            if (tcpcli->FetchMode() == 0 && gpsmode != 0) {
+-                                if (sound == 1 && gpsmode != -1)
+-                                    sound = PlaySound("gpslost");
+-                                gpsmode = 0;
+-                            } else if (tcpcli->FetchMode() != 0 && gpsmode == 0) {
+-                                if (sound == 1 && gpsmode != -1)
+-                                    sound = PlaySound("gpslock");
+-                                gpsmode = 1;
+-                            }
+-                        }
+-
+                         if (tcpcli->FetchDeltaNumNetworks() > 0) {
+                             wireless_network *newnet = tcpcli->FetchLastNewNetwork();
+-
+-                            if (sound == 1 && newnet != lastspoken) {
+-                                if (newnet->crypt_set && 
+-                                    wav_map.find("new_wep") != wav_map.end())
+-                                    sound = PlaySound("new_wep");
+-                                else
+-                                    sound = PlaySound("new");
+-                            }
+-
+-                            if (speech == 1 && newnet != lastspoken) {
+-                                string text;
+-
+-                                if (newnet != NULL) {
+-                                    if (newnet->crypt_set)
+-                                        text = ExpandSpeechString(speech_sentence_encrypted, newnet, speech_encoding);
+-                                    else
+-                                        text = ExpandSpeechString(speech_sentence_unencrypted, newnet, speech_encoding);
+-
+-                                    speech = SayText(text.c_str());
+-                                }
+-                            }
+-
+-                            lastspoken = newnet;
+                         }
+                         num_networks += tcpcli->FetchNumNetworks();
+@@ -938,17 +567,7 @@
+                         num_noise += tcpcli->FetchNumNoise();
+                         num_dropped += tcpcli->FetchNumDropped();
+-                        if (tcpcli->FetchDeltaNumPackets() != 0) {
+-                            if (time(0) - last_click >= decay && sound == 1) {
+-                                if (tcpcli->FetchDeltaNumPackets() > tcpcli->FetchDeltaNumDropped()) {
+-                                    sound = PlaySound("traffic");
+-                                } else {
+-                                    sound = PlaySound("junktraffic");
+-                                }
+-
+-                                last_click = time(0);
+-                            }
+-                        }
++                                              tcpcli->FetchDeltaNumPackets();
+                     }
+                 }
+             } else {
+diff -urN kismet.dev/kismet_drone.cc kismet.dev2/kismet_drone.cc
+--- kismet.dev/kismet_drone.cc 2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/kismet_drone.cc        2005-08-23 01:59:25.649219336 +0200
+@@ -32,16 +32,11 @@
+ #include "packet.h"
+ #include "packetsource.h"
+-#include "prism2source.h"
+ #include "pcapsource.h"
+-#include "wtapfilesource.h"
+-#include "wsp100source.h"
+-#include "vihasource.h"
+ #include "dronesource.h"
+ #include "packetsourcetracker.h"
+ #include "kis_packsources.h"
+-#include "gpsd.h"
+ #include "tcpstreamer.h"
+ #include "configfile.h"
+@@ -53,10 +48,6 @@
+ const char *config_base = "kismet_drone.conf";
+-GPSD *gps = NULL;
+-int gpsmode = 0;
+-int gps_enable = 0;
+-
+ // Timetracker
+ Timetracker timetracker;
+@@ -81,26 +72,6 @@
+     exit(0);
+ }
+-int GpsEvent(Timetracker::timer_event *evt, void *parm) {
+-    // The GPS only provides us a new update once per second we might
+-    // as well only update it here once a second
+-    if (gps_enable) {
+-        int gpsret;
+-        gpsret = gps->Scan();
+-        if (gpsret < 0) {
+-            if (!silent)
+-                fprintf(stderr, "GPS error fetching data: %s\n",
+-                        gps->FetchError());
+-
+-            gps_enable = 0;
+-        }
+-
+-    }
+-
+-    // We want to be rescheduled
+-    return 1;
+-}
+-
+ // Handle channel hopping... this is actually really simple.
+ int ChannelHopEvent(Timetracker::timer_event *evt, void *parm) {
+     sourcetracker.AdvanceChannel();
+@@ -148,9 +119,6 @@
+     TcpStreamer streamer;
+-    char gpshost[1024];
+-    int gpsport = -1;
+-
+     int channel_hop = -1;
+     int channel_velocity = 1;
+     int channel_dwell = 0;
+@@ -351,46 +319,6 @@
+         exit(1);
+     }
+-    if (conf->FetchOpt("gps") == "true") {
+-        if (sscanf(conf->FetchOpt("gpshost").c_str(), "%1023[^:]:%d", gpshost, &gpsport) != 2) {
+-            fprintf(stderr, "Invalid GPS host in config (host:port required)\n");
+-            exit(1);
+-        }
+-
+-        gps_enable = 1;
+-    } else {
+-            gps_enable = 0;
+-    }
+-
+-    if (gps_enable == 1) {
+-        // Open the GPS
+-        gps = new GPSD(gpshost, gpsport);
+-
+-        // Lock GPS position
+-        if (conf->FetchOpt("gpsmodelock") == "true") {
+-            fprintf(stderr, "Enabling GPS position lock override (broken GPS unit reports 0 always)\n");
+-            gps->SetOptions(GPSD_OPT_FORCEMODE);
+-        }
+-
+-        if (gps->OpenGPSD() < 0) {
+-            fprintf(stderr, "%s\n", gps->FetchError());
+-
+-            gps_enable = 0;
+-        } else {
+-            fprintf(stderr, "Opened GPS connection to %s port %d\n",
+-                    gpshost, gpsport);
+-
+-        }
+-    }
+-
+-    // Update GPS coordinates and handle signal loss if defined
+-    timetracker.RegisterTimer(SERVER_TIMESLICES_SEC, NULL, 1, &GpsEvent, NULL);
+-
+-      // Add the GPS to the tcpstreamer
+-      streamer.AddGpstracker(gps);
+-
+-    // Register the gps and timetracker with the sourcetracker
+-    sourcetracker.AddGpstracker(gps);
+     sourcetracker.AddTimetracker(&timetracker);
+     // Register the sources
+diff -urN kismet.dev/kismet_server.cc kismet.dev2/kismet_server.cc
+--- kismet.dev/kismet_server.cc        2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/kismet_server.cc       2005-08-23 01:59:25.653218728 +0200
+@@ -37,11 +37,7 @@
+ #include "packet.h"
+ #include "packetsource.h"
+-#include "prism2source.h"
+ #include "pcapsource.h"
+-#include "wtapfilesource.h"
+-#include "wsp100source.h"
+-#include "vihasource.h"
+ #include "dronesource.h"
+ #include "packetsourcetracker.h"
+ #include "kis_packsources.h"
+@@ -51,15 +47,11 @@
+ #include "wtaplocaldump.h"
+ #include "airsnortdump.h"
+ #include "fifodump.h"
+-#include "gpsdump.h"
+-
+-#include "gpsd.h"
+ #include "packetracker.h"
+ #include "timetracker.h"
+ #include "alertracker.h"
+-#include "speech.h"
+ #include "tcpserver.h"
+ #include "server_globals.h"
+ #include "kismet_server.h"
+@@ -89,17 +81,8 @@
+ Alertracker alertracker;
+ Timetracker timetracker;
+-GPSD *gps = NULL;
+-int gpsmode = 0;
+-GPSDump gpsdump;
+-
+-// Last time we tried to reconnect to the gps
+-time_t last_gpsd_reconnect = 0;
+-int gpsd_reconnect_attempt = 0;
+-
+ FifoDumpFile fifodump;
+ TcpServer ui_server;
+-int sound = -1;
+ packet_info last_info;
+ int decay;
+ channel_power channel_graph[CHANNEL_MAX];
+@@ -112,11 +95,8 @@
+ // Wep keys
+ macmap<wep_key_info *> bssid_wep_map;
+-// Pipe file descriptor pairs and fd's
+-int soundpair[2];
+-int speechpair[2];
+ int chanpair[2];
+-pid_t soundpid = -1, speechpid = -1, chanpid = -1;
++pid_t chanpid = -1;
+ // Past alerts
+ unsigned int max_alerts = 50;
+@@ -177,17 +157,6 @@
+ int tcpport = -1;
+ int tcpmax;
+-//const char *sndplay = NULL;
+-string sndplay;
+-
+-const char *festival = NULL;
+-int speech = -1;
+-int flite = 0;
+-int speech_encoding = 0;
+-string speech_sentence_encrypted, speech_sentence_unencrypted;
+-
+-map<string, string> wav_map;
+-
+ int beacon_log = 1;
+ int phy_log = 1;
+ int mangle_log = 0;
+@@ -347,17 +316,6 @@
+         // delete cryptfile;
+     }
+-    if (gps_log == 1) {
+-        if (gpsdump.CloseDump(1) < 0)
+-            fprintf(stderr, "Didn't log any GPS coordinates, unlinking gps file\n");
+-    }
+-
+-    // Kill our sound players
+-    if (soundpid > 0)
+-        kill(soundpid, 9);
+-    if (speechpid > 0)
+-        kill(speechpid, 9);
+-
+     // Shut down the packet sources
+     sourcetracker.CloseSources();
+@@ -368,228 +326,10 @@
+     exit(0);
+ }
+-// Subprocess sound handler
+-void SoundHandler(int *fds, const char *player, map<string, string> soundmap) {
+-    int read_sock = fds[0];
+-    close(fds[1]);
+-
+-    fd_set rset;
+-
+-    char data[1024];
+-
+-    pid_t sndpid = -1;
+-    int harvested = 1;
+-
+-    while (1) {
+-        FD_ZERO(&rset);
+-        FD_SET(read_sock, &rset);
+-        char *end;
+-
+-        memset(data, 0, 1024);
+-
+-        struct timeval tm;
+-        tm.tv_sec = 1;
+-        tm.tv_usec = 0;
+-
+-        if (select(read_sock + 1, &rset, NULL, NULL, &tm) < 0) {
+-            if (errno != EINTR) {
+-                exit(1);
+-            }
+-        }
+-
+-        if (harvested == 0) {
+-            // We consider a wait error to be a sign that the child pid died
+-            // so we flag it as harvested and keep on going
+-            pid_t harvestpid = waitpid(sndpid, NULL, WNOHANG);
+-            if (harvestpid == -1 || harvestpid == sndpid)
+-                harvested = 1;
+-        }
+-
+-        if (FD_ISSET(read_sock, &rset)) {
+-            int ret;
+-            ret = read(read_sock, data, 1024);
+-
+-            // We'll die off if we get a read error, and we'll let kismet on the
+-            // other side detact that it died
+-            if (ret <= 0 && (errno != EAGAIN && errno != EPIPE))
+-                exit(1);
+-
+-            if ((end = strstr(data, "\n")) == NULL)
+-                continue;
+-
+-            end[0] = '\0';
+-        }
+-
+-        if (data[0] == '\0')
+-            continue;
+-
+-
+-        // If we've harvested the process, spawn a new one and watch it
+-        // instead.  Otherwise, we just let go of the data we read
+-        if (harvested == 1) {
+-            // Only take the first line
+-            char *nl;
+-            if ((nl = strchr(data, '\n')) != NULL)
+-                *nl = '\0';
+-
+-            // Make sure it's shell-clean
+-
+-            char snd[1024];
+-
+-            if (soundmap.size() == 0)
+-                snprintf(snd, 1024, "%s", data);
+-            if (soundmap.find(data) != soundmap.end())
+-                snprintf(snd, 1024, "%s", soundmap[data].c_str());
+-            else
+-                continue;
+-
+-            char plr[1024];
+-            snprintf(plr, 1024, "%s", player);
+-
+-            harvested = 0;
+-            if ((sndpid = fork()) == 0) {
+-                // Suppress errors
+-                if (silent) {
+-                    int nulfd = open("/dev/null", O_RDWR);
+-                    dup2(nulfd, 1);
+-                    dup2(nulfd, 2);
+-                }
+-
+-                char * const echoarg[] = { plr, snd, NULL };
+-                execve(echoarg[0], echoarg, NULL);
+-            }
+-        }
+-        data[0] = '\0';
+-    }
+-}
+-
+-// Subprocess speech handler
+-void SpeechHandler(int *fds, const char *player) {
+-    int read_sock = fds[0];
+-    close(fds[1]);
+-
+-    fd_set rset;
+-
+-    char data[1024];
+-
+-    pid_t sndpid = -1;
+-    int harvested = 1;
+-
+-    while (1) {
+-        FD_ZERO(&rset);
+-        FD_SET(read_sock, &rset);
+-        //char *end;
+-
+-        memset(data, 0, 1024);
+-
+-        if (harvested == 0) {
+-            // We consider a wait error to be a sign that the child pid died
+-            // so we flag it as harvested and keep on going
+-            pid_t harvestpid = waitpid(sndpid, NULL, WNOHANG);
+-            if (harvestpid == -1 || harvestpid == sndpid)
+-                harvested = 1;
+-        }
+-
+-        struct timeval tm;
+-        tm.tv_sec = 1;
+-        tm.tv_usec = 0;
+-
+-        if (select(read_sock + 1, &rset, NULL, NULL, &tm) < 0) {
+-            if (errno != EINTR) {
+-                exit(1);
+-            }
+-        }
+-
+-        if (FD_ISSET(read_sock, &rset)) {
+-            int ret;
+-            ret = read(read_sock, data, 1024);
+-
+-            // We'll die off if we get a read error, and we'll let kismet on the
+-            // other side detact that it died
+-            if (ret <= 0 && (errno != EAGAIN && errno != EPIPE))
+-                exit(1);
+-
+-            data[ret] = '\0';
+-        }
+-
+-        if (data[0] == '\0')
+-            continue;
+-
+-        // If we've harvested the process, spawn a new one and watch it
+-        // instead.  Otherwise, we just let go of the data we read
+-        if (harvested == 1) {
+-            harvested = 0;
+-            if ((sndpid = fork()) == 0) {
+-                // Only take the first line
+-                char *nl;
+-                if ((nl = strchr(data, '\n')) != NULL)
+-                    *nl = '\0';
+-
+-                // Make sure it's shell-clean
+-                MungeToShell(data, strlen(data));
+-                char spk_call[1024];
+-                snprintf(spk_call, 1024, "echo \"(%s\\\"%s\\\")\" | %s "
+-                                               ">/dev/null 2>/dev/null",
+-                                               flite ? "" : "SayText ", data, player);
+-                system(spk_call);
+-
+-                exit(0);
+-            }
+-        }
+-
+-        data[0] = '\0';
+-    }
+-}
+-
+-
+-// Fork and run a system call to play a sound
+-int PlaySound(string in_sound) {
+-
+-    char snd[1024];
+-
+-    snprintf(snd, 1024, "%s\n", in_sound.c_str());
+-
+-    if (write(soundpair[1], snd, strlen(snd)) < 0) {
+-        char status[STATUS_MAX];
+-        if (!silent)
+-            fprintf(stderr, "ERROR:  Write error, closing sound pipe.\n");
+-        snprintf(status, STATUS_MAX, "ERROR:  Write error on sound pipe, closing sound connection");
+-        NetWriteStatus(status);
+-
+-        return 0;
+-    }
+-
+-    return 1;
+-}
+-
+-int SayText(string in_text) {
+-
+-    char snd[1024];
+-
+-    snprintf(snd, 1024, "%s\n", in_text.c_str());
+-    MungeToShell(snd, 1024);
+-
+-    if (write(speechpair[1], snd, strlen(snd)) < 0) {
+-        char status[STATUS_MAX];
+-        if (!silent)
+-            fprintf(stderr, "ERROR:  Write error, closing speech pipe.\n");
+-        snprintf(status, STATUS_MAX, "ERROR:  Write error on speech pipe, closing speech connection");
+-        NetWriteStatus(status);
+-
+-        return 0;
+-    }
+-
+-    return 1;
+-}
+-
+ void KisLocalAlert(const char *in_text) {
+     time_t now = time(0);
+     if (!silent)
+         fprintf(stderr, "ALERT %.24s %s\n", ctime(&now), in_text);
+-
+-    if (sound == 1)
+-        sound = PlaySound("alert");
+-
+ }
+ void KisLocalStatus(const char *in_status) {
+@@ -638,37 +378,6 @@
+     char tmpstr[32];
+-    GPS_data gdata;
+-
+-    if (gps_enable) {
+-        float lat, lon, alt, spd, hed;
+-        int mode;
+-
+-        gps->FetchLoc(&lat, &lon, &alt, &spd, &hed, &mode);
+-
+-        snprintf(tmpstr, 32, "%f", lat);
+-        gdata.lat = tmpstr;
+-        snprintf(tmpstr, 32, "%f", lon);
+-        gdata.lon = tmpstr;
+-        snprintf(tmpstr, 32, "%f", alt);
+-        gdata.alt = tmpstr;
+-        snprintf(tmpstr, 32, "%f", spd);
+-        gdata.spd = tmpstr;
+-        snprintf(tmpstr, 32, "%f", hed);
+-        gdata.heading = tmpstr;
+-        snprintf(tmpstr, 32, "%d", mode);
+-        gdata.mode = tmpstr;
+-    } else {
+-        gdata.lat = "0.0";
+-        gdata.lon = "0.0";
+-        gdata.alt = "0.0";
+-        gdata.spd = "0.0";
+-        gdata.heading = "0.0";
+-        gdata.mode = "0";
+-    }
+-
+-    ui_server.SendToAll(gps_ref, (void *) &gdata);
+-
+     INFO_data idata;
+     snprintf(tmpstr, 32, "%d", tracker.FetchNumNetworks());
+     idata.networks = tmpstr;
+@@ -789,81 +498,6 @@
+     }
+ }
+-int GpsEvent(Timetracker::timer_event *evt, void *parm) {
+-    char status[STATUS_MAX];
+-
+-    // The GPS only provides us a new update once per second we might
+-    // as well only update it here once a second
+-
+-    // If we're disconnected, try to reconnect.
+-    if (gpsd_reconnect_attempt > 0) {
+-        // Increment the time between connection attempts
+-        if (last_gpsd_reconnect + ((gpsd_reconnect_attempt - 1) * 2) < time(0)) {
+-            if (gps->OpenGPSD() < 0) {
+-                last_gpsd_reconnect = time(0);
+-
+-                if (gpsd_reconnect_attempt < 20)
+-                    gpsd_reconnect_attempt++;
+-
+-                snprintf(status, STATUS_MAX, "Unable to reconnect to GPSD, trying "
+-                         "again in %d seconds.", ((gpsd_reconnect_attempt - 1) * 2));
+-
+-                if (!silent || NetWriteStatus(status) == 0)
+-                    fprintf(stderr, "WARNING: %s\n", status);
+-
+-                return 1;
+-            } else {
+-                gpsd_reconnect_attempt = 0;
+-
+-                snprintf(status, STATUS_MAX, "Reopened connection to GPSD");
+-                if (!silent || NetWriteStatus(status) == 0)
+-                    fprintf(stderr, "NOTICE: %s\n", status);
+-            }
+-        } else {
+-            // Don't process more if we haven't woken up yet
+-            return 1;
+-        }
+-
+-    }
+-    
+-    if (gps_enable) {
+-        int gpsret;
+-        gpsret = gps->Scan();
+-
+-        if (gpsret < 0) {
+-            snprintf(status, STATUS_MAX, "GPS error requesting data: %s",
+-                     gps->FetchError());
+-
+-            if (!silent || NetWriteStatus(status) == 0)
+-                fprintf(stderr, "WARNING: %s\n", status);
+-
+-            gpsd_reconnect_attempt = 1;
+-        }
+-
+-        if (gpsret == 0 && gpsmode != 0) {
+-            if (!silent || NetWriteStatus("Lost GPS signal.") == 0)
+-                fprintf(stderr, "Lost GPS signal.\n");
+-            if (sound == 1)
+-                sound = PlaySound("gpslost");
+-
+-            gpsmode = 0;
+-        } else if (gpsret != 0 && gpsmode == 0) {
+-            if (!silent || NetWriteStatus("Acquired GPS signal.") == 0)
+-                fprintf(stderr, "Acquired GPS signal.\n");
+-            if (sound == 1)
+-                sound = PlaySound("gpslock");
+-
+-            gpsmode = 1;
+-        }
+-    }
+-
+-    if (gps_log == 1 && gpsmode != 0 && gps != NULL) {
+-        gpsdump.DumpTrack(gps);
+-    }
+-
+-    // We want to be rescheduled
+-    return 1;
+-}
+ // Simple redirect to the network info drawer.  We don't want to change netwriteinfo to a
+ // timer event since we call it un-timed too
+@@ -884,13 +518,6 @@
+     return 1;
+ }
+-// Write the waypoints for gpsdrive
+-int WaypointSyncEvent(Timetracker::timer_event *evt, void *parm) {
+-    tracker.WriteGpsdriveWaypt(waypoint_file);
+-
+-    return 1;
+-}
+-
+ // Handle tracker maintenance
+ int TrackerTickEvent(Timetracker::timer_event *evt, void *parm) {
+     tracker.Tick();
+@@ -1159,11 +786,9 @@
+            "  -c, --capture-source <src>   Packet capture source line (type,interface,name)\n"
+            "  -C, --enable-capture-sources Comma separated list of named packet sources to use.\n"
+            "  -l, --log-types <types>      Comma separated list of types to log,\n"
+-           "                                (ie, dump,cisco,weak,network,gps)\n"
++           "                                (ie, dump,cisco,weak,network)\n"
+            "  -d, --dump-type <type>       Dumpfile type (wiretap)\n"
+            "  -m, --max-packets <num>      Maximum number of packets before starting new dump\n"
+-           "  -q, --quiet                  Don't play sounds\n"
+-           "  -g, --gps <host:port>        GPS server (host:port or off)\n"
+            "  -p, --port <port>            TCPIP server port for GUI connections\n"
+            "  -a, --allowed-hosts <hosts>  Comma separated list of hosts allowed to connect\n"
+            "  -b, --bind-address <address>    Bind to this address. Default INADDR_ANY\n."
+@@ -1287,23 +912,6 @@
+         ip_track = 1;
+     }
+-
+-    if (conf->FetchOpt("waypoints") == "true") {
+-        if(conf->FetchOpt("waypointdata") == "") {
+-            fprintf(stderr, "WARNING:  Waypoint logging requested but no waypoint data file given.\n"
+-                    "Waypoint logging will be disabled.\n");
+-            waypoint = 0;
+-        } else {
+-            waypointfile = conf->ExpandLogPath(conf->FetchOpt("waypointdata"), "", "", 0, 1);
+-            waypoint = 1;
+-        }
+-        if(conf->FetchOpt("waypoint_essid") == "true") {
+-            waypointformat = 1;
+-        } else {
+-          waypointformat = 0;
+-        }
+-    }
+-
+     if (conf->FetchOpt("metric") == "true") {
+         fprintf(stderr, "Using metric measurements.\n");
+         metric = 1;
+@@ -1421,26 +1029,6 @@
+             }
+         }
+-
+-        if (strstr(logtypes, "gps")) {
+-            if (gps_log == 0) {
+-                fprintf(stderr, "WARNING:  Disabling GPS logging.\n");
+-            } else {
+-                gps_log = 1;
+-
+-                if (conf->FetchOpt("logtemplate") == "") {
+-                    fprintf(stderr, "FATAL:  Logging (gps coordinates) enabled but no logtemplate given in config.\n");
+-                    ErrorShutdown();
+-                }
+-            }
+-
+-        }
+-
+-        if (gps_log == 1 && !net_log) {
+-            fprintf(stderr, "WARNING:  Logging (gps coordinates) enabled but XML logging (networks) was not.\n"
+-                    "It will be enabled now.\n");
+-            xml_log = 1;
+-        }
+     }
+     if (conf->FetchOpt("decay") != "") {
+@@ -1561,72 +1149,6 @@
+         legal_ipblock_vec.push_back(ipb);
+     }
+-    // Process sound stuff
+-    if (conf->FetchOpt("sound") == "true" && sound == -1) {
+-        if (conf->FetchOpt("soundplay") != "") {
+-            sndplay = conf->FetchOpt("soundplay");
+-
+-            if (conf->FetchOpt("soundopts") != "")
+-                sndplay += " " + conf->FetchOpt("soundopts");
+-
+-            sound = 1;
+-
+-            if (conf->FetchOpt("sound_new") != "")
+-                wav_map["new"] = conf->FetchOpt("sound_new");
+-            if (conf->FetchOpt("sound_new_wep") != "")
+-                wav_map["new_wep"] = conf->FetchOpt("sound_new_wep");
+-            if (conf->FetchOpt("sound_traffic") != "")
+-                wav_map["traffic"] = conf->FetchOpt("sound_traffic");
+-            if (conf->FetchOpt("sound_junktraffic") != "")
+-                wav_map["junktraffic"] = conf->FetchOpt("sound_traffic");
+-            if (conf->FetchOpt("sound_gpslock") != "")
+-                wav_map["gpslock"] = conf->FetchOpt("sound_gpslock");
+-            if (conf->FetchOpt("sound_gpslost") != "")
+-                wav_map["gpslost"] = conf->FetchOpt("sound_gpslost");
+-            if (conf->FetchOpt("sound_alert") != "")
+-                wav_map["alert"] = conf->FetchOpt("sound_alert");
+-
+-        } else {
+-            fprintf(stderr, "ERROR:  Sound alerts enabled but no sound playing binary specified.\n");
+-            sound = 0;
+-        }
+-    } else if (sound == -1)
+-        sound = 0;
+-
+-    /* Added by Shaw Innes 17/2/02 */
+-    /* Modified by Andrew Etter 15/9/02 */
+-    if (conf->FetchOpt("speech") == "true" && speech == -1) {
+-        if (conf->FetchOpt("festival") != "") {
+-            festival = strdup(conf->FetchOpt("festival").c_str());
+-            speech = 1;
+-              
+-                      if (conf->FetchOpt("flite") == "true")
+-                              flite = 1;
+-
+-            string speechtype = conf->FetchOpt("speech_type");
+-
+-            if (!strcasecmp(speechtype.c_str(), "nato"))
+-                speech_encoding = SPEECH_ENCODING_NATO;
+-            else if (!strcasecmp(speechtype.c_str(), "spell"))
+-                speech_encoding = SPEECH_ENCODING_SPELL;
+-            else
+-                speech_encoding = SPEECH_ENCODING_NORMAL;
+-
+-            // Make sure we have encrypted text lines
+-            if (conf->FetchOpt("speech_encrypted") == "" || conf->FetchOpt("speech_unencrypted") == "") {
+-                fprintf(stderr, "ERROR:  Speech request but speech_encrypted or speech_unencrypted line missing.\n");
+-                speech = 0;
+-            }
+-
+-            speech_sentence_encrypted = conf->FetchOpt("speech_encrypted");
+-            speech_sentence_unencrypted = conf->FetchOpt("speech_unencrypted");
+-        } else {
+-            fprintf(stderr, "ERROR: Speech alerts enabled but no path to festival has been specified.\n");
+-            speech = 0;
+-        }
+-    } else if (speech == -1)
+-        speech = 0;
+-
+     if (conf->FetchOpt("writeinterval") != "") {
+         if (sscanf(conf->FetchOpt("writeinterval").c_str(), "%d", &datainterval) != 1) {
+             fprintf(stderr, "FATAL:  Illegal config file value for data interval.\n");
+@@ -1646,45 +1168,6 @@
+         fprintf(stderr, "WARNING:  No client_manuf file specified.  Client manufacturers will not be detected.\n");
+     }
+-    // Fork and find the sound options
+-    if (sound) {
+-        if (pipe(soundpair) == -1) {
+-            fprintf(stderr, "WARNING:  Unable to create pipe for audio.  Disabling sound.\n");
+-            sound = 0;
+-        } else {
+-            soundpid = fork();
+-
+-            if (soundpid < 0) {
+-                fprintf(stderr, "WARNING:  Unable to fork for audio.  Disabling sound.\n");
+-                sound = 0;
+-            } else if (soundpid == 0) {
+-                SoundHandler(soundpair, sndplay.c_str(), wav_map);
+-                exit(0);
+-            }
+-
+-            close(soundpair[0]);
+-        }
+-    }
+-
+-    if (speech) {
+-        if (pipe(speechpair) == -1) {
+-            fprintf(stderr, "WARNING:  Unable to create pipe for speech.  Disabling speech.\n");
+-            speech = 0;
+-        } else {
+-            speechpid = fork();
+-
+-            if (speechpid < 0) {
+-                fprintf(stderr, "WARNING:  Unable to fork for speech.  Disabling speech.\n");
+-                speech = 0;
+-            } else if (speechpid == 0) {
+-                SpeechHandler(speechpair, festival);
+-                exit(0);
+-            }
+-
+-            close(speechpair[0]);
+-        }
+-    }
+-
+     // Grab the filtering
+     string filter_bit;
+@@ -1710,7 +1193,7 @@
+     }
+     if ((filter_bit = conf->FetchOpt("filter_export")) != "") {
+-        fprintf(stderr, "Enabling filtering on exported (csv, xml, network, gps) files.\n");
++        fprintf(stderr, "Enabling filtering on exported (csv, xml, network) files.\n");
+         filter_export = 1;
+         if (ConfigFile::ParseFilterLine(filter_bit, &filter_export_bssid, &filter_export_source,
+                                         &filter_export_dest, &filter_export_bssid_invert,
+@@ -1816,14 +1299,6 @@
+     }
+-    if (waypoint) {
+-        if ((waypoint_file = fopen(waypointfile.c_str(), "a")) == NULL) {
+-            fprintf(stderr, "WARNING:  Could not open waypoint file '%s' for writing: %s\n",
+-                    waypointfile.c_str(), strerror(errno));
+-            waypoint = 0;
+-        }
+-    }
+-
+     // Create all the logs and title/number them appropriately
+     // We need to save this for after we toast the conf record
+     int logfile_matched = 0;
+@@ -1871,13 +1346,6 @@
+                 continue;
+         }
+-        if (gps_log == 1) {
+-            gpslogfile = conf->ExpandLogPath(conf->FetchOpt("logtemplate"), logname, "gps", run_num);
+-
+-            if (gpslogfile == "")
+-                continue;
+-        }
+-
+         // if we made it this far we're cool -- all the logfiles we're writing to matched
+         // this number
+         logfile_matched = 1;
+@@ -1906,9 +1374,6 @@
+     if (cisco_log)
+         fprintf(stderr, "Logging cisco product information to %s\n", ciscologfile.c_str());
+-    if (gps_log == 1)
+-        fprintf(stderr, "Logging gps coordinates to %s\n", gpslogfile.c_str());
+-
+     if (data_log)
+         fprintf(stderr, "Logging data to %s\n", dumplogfile.c_str());
+@@ -2055,7 +1520,6 @@
+         { "dump-type", required_argument, 0, 'd' },
+         { "max-packets", required_argument, 0, 'm' },
+         { "quiet", no_argument, 0, 'q' },
+-        { "gps", required_argument, 0, 'g' },
+         { "port", required_argument, 0, 'p' },
+         { "allowed-hosts", required_argument, 0, 'a' },
+         { "bind-address", required_argument, 0, 'b'},
+@@ -2136,18 +1600,6 @@
+                 Usage(argv[0]);
+             }
+             break;
+-        case 'g':
+-            // GPS
+-            if (strcmp(optarg, "off") == 0) {
+-                gps_enable = 0;
+-            }
+-            else if (sscanf(optarg, "%1023[^:]:%d", gpshost, &gpsport) < 2) {
+-                fprintf(stderr, "Invalid GPS host '%s' (host:port or off required)\n",
+-                       optarg);
+-                gps_enable = 1;
+-                Usage(argv[0]);
+-            }
+-            break;
+         case 'p':
+             // Port
+             if (sscanf(optarg, "%d", &tcpport) != 1) {
+@@ -2169,7 +1621,6 @@
+             break;
+         case 'q':
+             // Quiet
+-            sound = 0;
+             break;
+         case 'v':
+             // version
+@@ -2323,39 +1774,6 @@
+     // And we're done
+     fclose(pid_file);
+             
+-
+-    // Set up the GPS object to give to the children
+-    if (gpsport == -1 && gps_enable) {
+-        if (conf->FetchOpt("gps") == "true") {
+-            if (sscanf(conf->FetchOpt("gpshost").c_str(), "%1023[^:]:%d", gpshost, 
+-                       &gpsport) != 2) {
+-                fprintf(stderr, "Invalid GPS host in config (host:port required)\n");
+-                exit(1);
+-            }
+-
+-            gps_enable = 1;
+-        } else {
+-            gps_enable = 0;
+-            gps_log = 0;
+-        }
+-    }
+-
+-    if (gps_enable == 1) {
+-        gps = new GPSD(gpshost, gpsport);
+-
+-        // Lock GPS position
+-        if (conf->FetchOpt("gpsmodelock") == "true") {
+-            fprintf(stderr, "Enabling GPS position lock override (broken GPS unit "
+-                    "reports 0 always)\n");
+-            gps->SetOptions(GPSD_OPT_FORCEMODE);
+-        }
+-
+-    } else {
+-        gps_log = 0;
+-    }
+-
+-    // Register the gps and timetracker with the sourcetracker
+-    sourcetracker.AddGpstracker(gps);
+     sourcetracker.AddTimetracker(&timetracker);
+     // Handle errors here maybe in the future
+@@ -2522,13 +1940,6 @@
+         fprintf(stderr, "Dump file format: %s\n", dumpfile->FetchType());
+     }
+-    if (gps_enable && gps_log == 1) {
+-        if (gpsdump.OpenDump(gpslogfile.c_str(), xmllogfile.c_str()) < 0) {
+-            fprintf(stderr, "FATAL: GPS dump error: %s\n", gpsdump.FetchError());
+-            ErrorShutdown();
+-        }
+-    }
+-
+     // Open our files first to make sure we can, we'll unlink the empties later.
+     FILE *testfile = NULL;
+     if (net_log) {
+@@ -2600,14 +2011,13 @@
+     */
+     if (data_log || net_log || crypt_log) {
+-        snprintf(status, STATUS_MAX, "Logging%s%s%s%s%s%s%s",
++        snprintf(status, STATUS_MAX, "Logging%s%s%s%s%s%s",
+                  data_log ? " data" : "" ,
+                  net_log ? " networks" : "" ,
+                  csv_log ? " CSV" : "" ,
+                  xml_log ? " XML" : "" ,
+                  crypt_log ? " weak" : "",
+-                 cisco_log ? " cisco" : "",
+-                 gps_log == 1 ? " gps" : "");
++                 cisco_log ? " cisco" : "");
+         fprintf(stderr, "%s\n", status);
+     } else if (no_log) {
+         snprintf(status, STATUS_MAX, "Not logging any data.");
+@@ -2625,23 +2035,6 @@
+         }
+     }
+-    if (gps_enable) {
+-        // Open the GPS
+-        if (gps->OpenGPSD() < 0) {
+-            fprintf(stderr, "%s\n", gps->FetchError());
+-
+-            gps_enable = 0;
+-            gps_log = 0;
+-        } else {
+-            fprintf(stderr, "Opened GPS connection to %s port %d\n",
+-                    gpshost, gpsport);
+-
+-            gpsmode = gps->FetchMode();
+-
+-            last_gpsd_reconnect = time(0);
+-        }
+-    }
+-
+     fprintf(stderr, "Listening on port %d.\n", tcpport);
+     for (unsigned int ipvi = 0; ipvi < legal_ipblock_vec.size(); ipvi++) {
+         char *netaddr = strdup(inet_ntoa(legal_ipblock_vec[ipvi]->network));
+@@ -2682,8 +2075,6 @@
+                                              &Protocol_NETWORK, &ProtocolNetworkEnable);
+     client_ref = ui_server.RegisterProtocol("CLIENT", 0, CLIENT_fields_text,
+                                             &Protocol_CLIENT, &ProtocolClientEnable);
+-    gps_ref = ui_server.RegisterProtocol("GPS", 0, GPS_fields_text,
+-                                         &Protocol_GPS, NULL);
+     info_ref = ui_server.RegisterProtocol("INFO", 0, INFO_fields_text,
+                                           &Protocol_INFO, NULL);
+     remove_ref = ui_server.RegisterProtocol("REMOVE", 0, REMOVE_fields_text,
+@@ -2738,14 +2129,9 @@
+     // Write network info and tick the tracker once per second
+     timetracker.RegisterTimer(SERVER_TIMESLICES_SEC, NULL, 1, &NetWriteEvent, NULL);
+     timetracker.RegisterTimer(SERVER_TIMESLICES_SEC, NULL, 1, &TrackerTickEvent, NULL);
+-    // Update GPS coordinates and handle signal loss if defined
+-    timetracker.RegisterTimer(SERVER_TIMESLICES_SEC, NULL, 1, &GpsEvent, NULL);
+     // Sync the data files if requested
+     if (datainterval > 0 && no_log == 0)
+         timetracker.RegisterTimer(datainterval * SERVER_TIMESLICES_SEC, NULL, 1, &ExportSyncEvent, NULL);
+-    // Write waypoints if requested
+-    if (waypoint)
+-        timetracker.RegisterTimer(decay * SERVER_TIMESLICES_SEC, NULL, 1, &WaypointSyncEvent, NULL);
+     // Channel hop if requested
+     if (channel_hop) {
+         if (channel_dwell)
+@@ -2769,7 +2155,6 @@
+     snprintf(status, 1024, "%s", TIMESTAMP);
+     kdata.timestamp = status;
+-    time_t last_click = 0;
+     int num_networks = 0, num_packets = 0, num_noise = 0, num_dropped = 0;
+@@ -2918,54 +2303,13 @@
+                     }
+-                    if (gps_log == 1 && info.type != packet_noise && 
+-                        info.type != packet_unknown && info.type != packet_phy && 
+-                        info.corrupt == 0) {
+-                        if (gpsdump.DumpPacket(&info) < 0) {
+-                            snprintf(status, STATUS_MAX, "%s", gpsdump.FetchError());
+-                            if (!silent || NetWriteStatus(status) == 0)
+-                                fprintf(stderr, "%s\n", status);
+-                        }
+-                    }
+-
+                     // tracker.ProcessPacket(info);
+                     tracker.ProcessPacket(&packet, &info, &bssid_wep_map, 
+                                                                                 wep_identity);
+-                    if (tracker.FetchNumNetworks() > num_networks) {
+-                        if (sound == 1)
+-                            if (info.crypt_set && 
+-                                                              wav_map.find("new_wep") != wav_map.end())
+-                                sound = PlaySound("new_wep");
+-                            else
+-                                sound = PlaySound("new");
+-                        if (speech == 1) {
+-                            string text;
+-
+-                            if (info.crypt_set)
+-                                text = ExpandSpeechString(speech_sentence_encrypted, &info, 
+-                                                          speech_encoding);
+-                            else
+-                                text = ExpandSpeechString(speech_sentence_unencrypted, 
+-                                                          &info, speech_encoding);
+-
+-                            speech = SayText(MungeToShell(text).c_str());
+-                        }
+-                    }
+                     num_networks = tracker.FetchNumNetworks();
+                     if (tracker.FetchNumPackets() != num_packets) {
+-                        if (cur_time - last_click >= decay && sound == 1) {
+-                            if (tracker.FetchNumPackets() - num_packets >
+-                                tracker.FetchNumDropped() + localdropnum - num_dropped) {
+-                                sound = PlaySound("traffic");
+-                            } else {
+-                                sound = PlaySound("junktraffic");
+-                            }
+-
+-                            last_click = cur_time;
+-                        }
+-
+                         num_packets = tracker.FetchNumPackets();
+                         num_noise = tracker.FetchNumNoise();
+                         num_dropped = tracker.FetchNumDropped() + localdropnum;
+diff -urN kismet.dev/kismet_server.h kismet.dev2/kismet_server.h
+--- kismet.dev/kismet_server.h 2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/kismet_server.h        2005-08-23 01:59:25.653218728 +0200
+@@ -33,10 +33,6 @@
+ void handle_command(TcpServer *tcps, client_command *cc);
+ int NetWriteStatus(const char *in_status);
+ void NetWriteInfo();
+-int SayText(string in_text);
+-int PlaySound(string in_sound);
+-void SpeechHandler(int *fds, const char *player);
+-void SoundHandler(int *fds, const char *player, map<string, string> soundmap);
+ void ProtocolAlertEnable(int in_fd);
+ void ProtocolNetworkEnable(int in_fd);
+ void ProtocolClientEnable(int in_fd);
+diff -urN kismet.dev/packetracker.cc kismet.dev2/packetracker.cc
+--- kismet.dev/packetracker.cc 2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/packetracker.cc        2005-08-23 01:59:25.656218272 +0200
+@@ -2439,23 +2439,3 @@
+ }
+-// Write a gpsdrive compatable waypoint file
+-int Packetracker::WriteGpsdriveWaypt(FILE *in_file) {
+-    fseek(in_file, 0L, SEEK_SET);
+-    ftruncate(fileno(in_file), 0);
+-
+-    // Convert the map to a vector and sort it
+-    for (map<mac_addr, wireless_network *>::const_iterator i = bssid_map.begin();
+-         i != bssid_map.end(); ++i) {
+-        wireless_network *net = i->second;
+-
+-        float lat, lon;
+-        lat = (net->min_lat + net->max_lat) / 2;
+-        lon = (net->min_lon + net->max_lon) / 2;
+-        fprintf(in_file, "%s\t%f  %f\n", waypointformat == 1 ? net->ssid.c_str() : net->bssid.Mac2String().c_str(), lat, lon);
+-    }
+-
+-    fflush(in_file);
+-
+-    return 1;
+-}
+diff -urN kismet.dev/packetracker.h kismet.dev2/packetracker.h
+--- kismet.dev/packetracker.h  2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/packetracker.h 2005-08-23 01:59:25.656218272 +0200
+@@ -30,7 +30,6 @@
+ #include <string>
+ #include "util.h"
+-#include "gpsd.h"
+ #include "packet.h"
+ #include "tracktypes.h"
+ #include "manuf.h"
+@@ -85,8 +84,6 @@
+     int WriteXMLNetworks(string in_fname);
+     int WriteCisco(string in_fname);
+-    int WriteGpsdriveWaypt(FILE *in_file);
+-
+     void WriteSSIDMap(FILE *in_file);
+     void ReadSSIDMap(FILE *in_file);
+diff -urN kismet.dev/packetsourcetracker.cc kismet.dev2/packetsourcetracker.cc
+--- kismet.dev/packetsourcetracker.cc  2005-08-23 00:59:39.969982048 +0200
++++ kismet.dev2/packetsourcetracker.cc 2005-08-23 01:59:25.657218120 +0200
+@@ -24,7 +24,6 @@
+ Packetsourcetracker::Packetsourcetracker() {
+     next_packsource_id = 0;
+     next_meta_id = 0;
+-    gpsd = NULL;
+     timetracker = NULL;
+     chanchild_pid = 0;
+     sockpair[0] = sockpair[1] = 0;
+@@ -691,7 +690,6 @@
+         
+         // Register the trackers with it
+         meta->capsource->AddTimetracker(timetracker);
+-        meta->capsource->AddGpstracker(gpsd);
+        
+         // Open it
+         fprintf(stderr, "Source %d (%s): Opening %s source interface %s...\n",
+diff -urN kismet.dev/packetsourcetracker.h kismet.dev2/packetsourcetracker.h
+--- kismet.dev/packetsourcetracker.h   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/packetsourcetracker.h  2005-08-23 01:59:25.658217968 +0200
+@@ -30,7 +30,6 @@
+ #include <string>
+ #include "timetracker.h"
+-#include "gpsd.h"
+ #include "packetsource.h"
+ // Sentinel for starting a new packet
+@@ -144,9 +143,6 @@
+     // Register a timer event handler for us to use
+     void AddTimetracker(Timetracker *in_tracker) { timetracker = in_tracker; }
+-    // Register the GPS server for us to use
+-    void AddGpstracker(GPSD *in_gpsd) { gpsd = in_gpsd; }
+-    
+     // Register a packet prototype source...  Card type string, root binding requirement,
+     // function to generate an instance of the source, and function to change channel 
+     // for this card type.  This fills out the prototype. Sources that don't hop 
+@@ -221,7 +217,6 @@
+         uint16_t channel;
+     } chanchild_changepacket;
+-    GPSD *gpsd;
+     Timetracker *timetracker;
+     
+     char errstr[1024];
+diff -urN kismet.dev/panelfront.cc kismet.dev2/panelfront.cc
+--- kismet.dev/panelfront.cc   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/panelfront.cc  2005-08-23 01:59:25.659217816 +0200
+@@ -37,7 +37,6 @@
+     "  Key  Action",
+     "   e   List Kismet servers",
+     "   z   Toggle fullscreen zoom of network view",
+-    "   m   Toggle muting of sound and speech",
+     "   t   Tag (or untag) selected network",
+     "   g   Group tagged networks",
+     "   u   Ungroup current group",
+@@ -121,7 +120,6 @@
+     "Key Action",
+     " e  List Kismet servers",
+     " z  Toggle fullscreen net list",
+-    " m  Toggle muting",
+     " t  Tag (or untag) selected",
+     " g  Group tagged networks",
+     " u  Ungroup current group",
+@@ -237,19 +235,6 @@
+ };
+-char *KismetHelpGps[] = {
+-    "KISMET NETWORK FOLLOW",
+-    "This panel estimates the center of a network, the current",
+-    "direction of travel, and the direction of the network center",
+-    "and distance relative to the current direction of movement.",
+-    " Key   Action",
+-    "  s    Follow location of strongest packet",
+-    "  c    Follow location of estimated network center",
+-    "  q    Close popup",
+-    NULL
+-};
+-
+-
+ char *KismetHelpStats[] = {
+     "KISMET NETWORK STATISTICS",
+     "This panel displays overall statistics about the wireless",
+@@ -678,7 +663,6 @@
+     }
+     // Enable all the protocols we handle
+-    in_client->EnableProtocol("GPS");
+     in_client->EnableProtocol("INFO");
+     in_client->EnableProtocol("REMOVE");
+     in_client->EnableProtocol("NETWORK");
+@@ -1282,27 +1266,6 @@
+         if (con->client == NULL)
+             continue;
+-        // Update GPS
+-        float newlat, newlon, newalt, newspd, newheading;
+-        int newfix;
+-        con->client->FetchLoc(&newlat, &newlon, &newalt, &newspd, &newheading, &newfix);
+-
+-        if (GPSD::EarthDistance(newlat, newlon, last_lat, last_lon) > 10) {
+-            con->last_lat = con->lat;
+-            con->last_lon = con->lon;
+-            con->last_spd = con->spd;
+-            con->last_alt = con->alt;
+-            con->last_fix = con->fix;
+-            con->last_heading = con->heading;
+-        }
+-
+-        con->lat = newlat;
+-        con->lon = newlon;
+-        con->alt = newalt;
+-        con->spd = newspd;
+-        con->heading = newheading;
+-        con->fix = newfix;
+-
+         // Update quality
+         con->quality = con->client->FetchQuality();
+         con->power = con->client->FetchPower();
+diff -urN kismet.dev/panelfront.h kismet.dev2/panelfront.h
+--- kismet.dev/panelfront.h    2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/panelfront.h   2005-08-23 01:59:25.660217664 +0200
+@@ -65,7 +65,6 @@
+ #define SORT_SIZE 10
+ extern char *KismetHelpPower[];
+ extern char *KismetHelpRate[];
+-extern char *KismetHelpGps[];
+ extern char *KismetHelpStats[];
+ extern char *KismetHelpDump[];
+ extern char *KismetHelpPack[];
+@@ -269,7 +268,6 @@
+     int RatePrinter(void *in_window);
+     int StatsPrinter(void *in_window);
+     int PackPrinter(void *in_window);
+-    int GpsPrinter(void *in_window);
+     int AlertPrinter(void *in_window);
+     int MainClientPrinter(void *in_window);
+@@ -298,7 +296,6 @@
+     int PackInput(void *in_window, int in_chr);
+     // Help has a generic handler
+     int TextInput(void *in_window, int in_chr);
+-    int GpsInput(void *in_window, int in_chr);
+     int AlertInput(void *in_window, int in_chr);
+     int MainClientInput(void *in_window, int in_chr);
+diff -urN kismet.dev/panelfront_display.cc kismet.dev2/panelfront_display.cc
+--- kismet.dev/panelfront_display.cc   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/panelfront_display.cc  2005-08-23 01:59:25.663217208 +0200
+@@ -727,7 +727,7 @@
+         mvwaddstr(netwin, netwin->_maxy, netwin->_maxx - 14, ptxt);
+     }
+-#ifdef HAVE_GPS
++#if 0
+     if (!(lat == 0 && lon == 0 && alt == 0 && spd == 0 && fix == 0)) {
+@@ -1496,51 +1496,6 @@
+         snprintf(output, print_width, "Networks: %d", (int) details_network->networks.size());
+         kwin->text.push_back(output);
+-        if (details_network->virtnet->gps_fixed != -1) {
+-            if ((details_network->virtnet->min_lat == 90) && (details_network->virtnet->min_lon == 180) &&
+-                (details_network->virtnet->max_lat == -90) && (details_network->virtnet->max_lon == -180)) {
+-                   snprintf(output, print_width, "Min Loc : N/A");
+-                   kwin->text.push_back(output);
+-                   snprintf(output, print_width, "Max Loc : N/A");
+-                   kwin->text.push_back(output);
+-                   snprintf(output, print_width, "Range   : N/A");
+-                   kwin->text.push_back(output);
+-            }
+-          else {
+-                snprintf(output, print_width, "Min Loc : Lat %f Lon %f Alt %f Spd %f",
+-                         details_network->virtnet->min_lat, details_network->virtnet->min_lon,
+-                         metric ? details_network->virtnet->min_alt / 3.3 : details_network->virtnet->min_alt,
+-                         metric ? details_network->virtnet->min_spd * 1.6093 : details_network->virtnet->min_spd);
+-                kwin->text.push_back(output);
+-                snprintf(output, print_width, "Max Loc : Lat %f Lon %f Alt %f Spd %f",
+-                         details_network->virtnet->max_lat, details_network->virtnet->max_lon,
+-                         metric ? details_network->virtnet->max_alt / 3.3 : details_network->virtnet->max_alt,
+-                         metric ? details_network->virtnet->max_spd * 1.6093 : details_network->virtnet->max_spd);
+-                kwin->text.push_back(output);
+-
+-                double diagdist = GPSD::EarthDistance(details_network->virtnet->min_lat,
+-                                                      details_network->virtnet->min_lon,
+-                                                      details_network->virtnet->max_lat,
+-                                                      details_network->virtnet->max_lon);
+-
+-                if (finite(diagdist)) {
+-                    if (metric) {
+-                        if (diagdist < 1000)
+-                            snprintf(output, print_width, "Range    : %.3f meters", diagdist);
+-                        else
+-                            snprintf(output, print_width, "Range   : %.3f kilometers", diagdist / 1000);
+-                    } else {
+-                        diagdist *= 3.3;
+-                        if (diagdist < 5280)
+-                            snprintf(output, print_width, "Range   : %.3f feet", diagdist);
+-                        else
+-                            snprintf(output, print_width, "Range   : %.3f miles", diagdist / 5280);
+-                    }
+-                    kwin->text.push_back(output);
+-                }
+-          }
+-        }
+-
+         if (details_network->virtnet->carrier_set & (1 << (int) carrier_80211b)) {
+             snprintf(output, print_width, "Carrier : IEEE 802.11b");
+             kwin->text.push_back(output);
+@@ -1853,49 +1808,6 @@
+                      dnet->ipdata.range_ip[2], dnet->ipdata.range_ip[3]);
+             kwin->text.push_back(output);
+         }
+-    
+-        if (dnet->gps_fixed != -1) {
+-            if ((dnet->min_lat == 90) && (dnet->min_lon == 180) &&
+-              (dnet->max_lat == -90) && (dnet->max_lon == -180)) {
+-                   snprintf(output, print_width, "Min Loc : N/A");
+-                   kwin->text.push_back(output);
+-                   snprintf(output, print_width, "Max Loc : N/A");
+-                   kwin->text.push_back(output);
+-                   snprintf(output, print_width, "Range   : N/A");
+-                   kwin->text.push_back(output);
+-          }
+-          else {
+-                snprintf(output, print_width, "Min Loc : Lat %f Lon %f Alt %f Spd %f",
+-                         dnet->min_lat, dnet->min_lon,
+-                         metric ? dnet->min_alt / 3.3 : dnet->min_alt,
+-                         metric ? dnet->min_spd * 1.6093 : dnet->min_spd);
+-                kwin->text.push_back(output);
+-                snprintf(output, print_width, "Max Loc : Lat %f Lon %f Alt %f Spd %f",
+-                         dnet->max_lat, dnet->max_lon,
+-                         metric ? dnet->max_alt / 3.3 : dnet->max_alt,
+-                         metric ? dnet->max_spd * 1.6093 : dnet->max_spd);
+-                kwin->text.push_back(output);
+-
+-                double diagdist = GPSD::EarthDistance(dnet->min_lat, dnet->min_lon,
+-                                                  dnet->max_lat, dnet->max_lon);
+-
+-                if (finite(diagdist)) {
+-                    if (metric) {
+-                        if (diagdist < 1000)
+-                            snprintf(output, print_width, "Range    : %f meters", diagdist);
+-                        else
+-                            snprintf(output, print_width, "Range   : %f kilometers", diagdist / 1000);
+-                    } else {
+-                        diagdist *= 3.3;
+-                        if (diagdist < 5280)
+-                            snprintf(output, print_width, "Range   : %f feet", diagdist);
+-                        else
+-                            snprintf(output, print_width, "Range   : %f miles", diagdist / 5280);
+-                    }
+-                    kwin->text.push_back(output);
+-                }
+-          }
+-        }
+     }
+     // Now we just use the text printer to handle the rest for us
+@@ -1903,184 +1815,6 @@
+     return TextPrinter(in_window);
+ }
+-int PanelFront::GpsPrinter(void *in_window) {
+-    kis_window *kwin = (kis_window *) in_window;
+-
+-    char output[1024];
+-    kwin->text.clear();
+-
+-      if (details_network == NULL) {
+-              kwin->text.push_back("The network or group being displayed");
+-              kwin->text.push_back("has been deleted.  Please select a ");
+-              kwin->text.push_back("different network.");
+-              return TextPrinter(in_window);
+-      }
+-
+-    wireless_network *dnet = details_network->virtnet;
+-
+-    int print_width = kwin->print_width;
+-    if (print_width > 1024)
+-        print_width = 1023;
+-
+-    if (print_width < 32) {
+-        kwin->text.push_back("Display not wide enough");
+-        return TextPrinter(in_window);
+-    }
+-
+-    if (dnet->aggregate_points == 0) {
+-        kwin->text.push_back("No GPS data.");
+-        return TextPrinter(in_window);
+-    }
+-
+-    float center_lat, center_lon;
+-
+-    // We hijack the "selected" field as a toggle
+-    if (kwin->selected == 1) {
+-        center_lat = dnet->best_lat;
+-        center_lon = dnet->best_lon;
+-    } else {
+-        center_lat = dnet->aggregate_lat / dnet->aggregate_points;
+-        center_lon = dnet->aggregate_lon / dnet->aggregate_points;
+-    }
+-
+-    // Get bearing to the center
+-    float center_angle = GPSD::CalcHeading(center_lat, center_lon, lat, lon);
+-
+-    float difference_angle = heading - center_angle;
+-    if (difference_angle < 0)
+-        difference_angle += 360;
+-
+-    double diagdist = GPSD::EarthDistance(lat, lon, center_lat, center_lon);
+-
+-    // Now we know everything - where we are, where we are headed, where we SHOULD be headed
+-    // to get to the supposed center of the network, how far it is, and the orientation on our
+-    // compass to get to it.  Time to start drawing our output.
+-
+-    char compass[5][10];
+-    memset(compass, 0, sizeof(char) * 5 * 10);
+-
+-    // |  41.12345x-74.12345     .-|-/    |
+-    // | Bearing:               /  |/ \   |
+-    // |  123.23 degrees       |   O   |  |
+-    // |                        \   \ /   |
+-    // | Estimated center:       '---\    |
+-
+-
+-    // Find the orientation on our compass:
+-    if (difference_angle > 330 || difference_angle <= 22) {
+-        snprintf(compass[0], 10, "  .-|-.  ");
+-        snprintf(compass[1], 10, " /  |  \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\     / ");
+-        snprintf(compass[4], 10, "  '---'  ");
+-    } else if (difference_angle > 22 && difference_angle <= 66) {
+-        snprintf(compass[0], 10, "  .---/  ");
+-        snprintf(compass[1], 10, " /   / \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\     / ");
+-        snprintf(compass[4], 10, "  '---'  ");
+-    } else if (difference_angle > 66 && difference_angle <= 110) {
+-        snprintf(compass[0], 10, "  .---.  ");
+-        snprintf(compass[1], 10, " /     \\ ");
+-        snprintf(compass[2], 10, "|   O----");
+-        snprintf(compass[3], 10, " \\     / ");
+-        snprintf(compass[4], 10, "  '---'  ");
+-    } else if (difference_angle > 110 && difference_angle <= 154) {
+-        snprintf(compass[0], 10, "  .---.  ");
+-        snprintf(compass[1], 10, " /     \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\   \\ / ");
+-        snprintf(compass[4], 10, "  '---\\  ");
+-    } else if (difference_angle > 154 && difference_angle <= 198) {
+-        snprintf(compass[0], 10, "  .---.  ");
+-        snprintf(compass[1], 10, " /     \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\  |  / ");
+-        snprintf(compass[4], 10, "  '-|-'  ");
+-    } else if (difference_angle > 198 && difference_angle <= 242) {
+-        snprintf(compass[0], 10, "  .---.  ");
+-        snprintf(compass[1], 10, " /     \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\ /   / ");
+-        snprintf(compass[4], 10, "  /---'  ");
+-    } else if (difference_angle > 242 && difference_angle <= 286) {
+-        snprintf(compass[0], 10, "  .---.  ");
+-        snprintf(compass[1], 10, " /     \\ ");
+-        snprintf(compass[2], 10, "----O   |");
+-        snprintf(compass[3], 10, " \\     / ");
+-        snprintf(compass[4], 10, "  '---'  ");
+-    } else if (difference_angle > 286 && difference_angle <= 330) {
+-        snprintf(compass[0], 10, "  \\---.  ");
+-        snprintf(compass[1], 10, " / \\   \\ ");
+-        snprintf(compass[2], 10, "|   O   |");
+-        snprintf(compass[3], 10, " \\     / ");
+-        snprintf(compass[4], 10, "  '---'  ");
+-    } else {
+-        snprintf(compass[0], 10, "%f\n", difference_angle);
+-    }
+-
+-
+-    // - Network GPS ---------------------|
+-    // | Current:                         |
+-    // |  41.12345x-74.12345     .-|-.    |
+-    // | Bearing:               /  |  \   |
+-    // |  123.23 degrees       |   O   |  |
+-    // |                        \   \ /   |
+-    // | Estimated center:       '---\    |
+-    // | -73.12345x43.12345               |
+-    // |                        120 feet  |
+-    // ------------------------------------
+-    char textfrag[23];
+-
+-    snprintf(output, print_width, "Current:");
+-    kwin->text.push_back(output);
+-
+-    snprintf(textfrag, 23, "%.3f x %.3f", lat, lon);
+-    snprintf(output, print_width, "%-22s%s", textfrag, compass[0]);
+-    kwin->text.push_back(output);
+-
+-    snprintf(textfrag, 23, " Bearing:");
+-    snprintf(output, print_width, "%-22s%s", textfrag, compass[1]);
+-    kwin->text.push_back(output);
+-
+-    snprintf(textfrag, 23, " %.2f*", heading);
+-    snprintf(output, print_width, "%-22s%s", textfrag, compass[2]);
+-    kwin->text.push_back(output);
+-
+-    snprintf(textfrag, 23, " ");
+-    snprintf(output, print_width, "%-22s%s", textfrag, compass[3]);
+-    kwin->text.push_back(output);
+-
+-    if (kwin->selected == 1)
+-        snprintf(textfrag, 23, "Strongest signal:");
+-    else
+-        snprintf(textfrag, 23, "Estimated Center:");
+-    snprintf(output, print_width, "%-22s%s", textfrag, compass[4]);
+-    kwin->text.push_back(output);
+-
+-    snprintf(textfrag, 23, "%.3f x %.3f", center_lat, center_lon);
+-    snprintf(output, print_width, "%-22s%.2f*", textfrag, difference_angle);
+-    kwin->text.push_back(output);
+-
+-    if (metric) {
+-        if (diagdist < 1000)
+-            snprintf(textfrag, 23, "%.2f m", diagdist);
+-        else
+-            snprintf(textfrag, 23, "%.2f km", diagdist / 1000);
+-    } else {
+-        diagdist *= 3.3;
+-        if (diagdist < 5280)
+-            snprintf(textfrag, 23, "%.2f ft", diagdist);
+-        else
+-            snprintf(textfrag, 23, "%.2f mi", diagdist / 5280);
+-    }
+-
+-    snprintf(output, print_width, "%-22s%s", "", textfrag);
+-    kwin->text.push_back(output);
+-
+-    return TextPrinter(in_window);
+-}
+-
+ int PanelFront::PackPrinter(void *in_window) {
+     kis_window *kwin = (kis_window *) in_window;
+@@ -3049,53 +2783,6 @@
+              details_client->ipdata.ip[2], details_client->ipdata.ip[3]);
+     kwin->text.push_back(output);
+-    if (details_client->gps_fixed != -1) {
+-        kwin->text.push_back("");
+-
+-        if ((details_client->min_lat == 90) && (details_client->min_lon == 180) &&
+-            (details_client->max_lat == -90) && (details_client->max_lon == -180)) {
+-               snprintf(output, print_width, "Min Loc : N/A");
+-               kwin->text.push_back(output);
+-               snprintf(output, print_width, "Max Loc : N/A");
+-               kwin->text.push_back(output);
+-               snprintf(output, print_width, "Range   : N/A");
+-               kwin->text.push_back(output);
+-        }
+-      else {
+-            snprintf(output, print_width, "Min Loc : Lat %f Lon %f Alt %f Spd %f",
+-                     details_client->min_lat, details_client->min_lon,
+-                     metric ? details_client->min_alt / 3.3 : details_client->min_alt,
+-                     metric ? details_client->min_spd * 1.6093 : details_client->min_spd);
+-            kwin->text.push_back(output);
+-            snprintf(output, print_width, "Max Loc : Lat %f Lon %f Alt %f Spd %f",
+-                     details_client->max_lat, details_client->max_lon,
+-                     metric ? details_client->max_alt / 3.3 : details_client->max_alt,
+-                     metric ? details_client->max_spd * 1.6093 : details_client->max_spd);
+-            kwin->text.push_back(output);
+-
+-            double diagdist = GPSD::EarthDistance(details_client->min_lat,
+-                                                  details_client->min_lon,
+-                                                  details_client->max_lat,
+-                                                  details_client->max_lon);
+-
+-            if (finite(diagdist)) {
+-                if (metric) {
+-                    if (diagdist < 1000)
+-                        snprintf(output, print_width, "Range    : %f meters", diagdist);
+-                    else
+-                        snprintf(output, print_width, "Range    : %f kilometers", diagdist / 1000);
+-                } else {
+-                    diagdist *= 3.3;
+-                    if (diagdist < 5280)
+-                        snprintf(output, print_width, "Range   : %f feet", diagdist);
+-                    else
+-                        snprintf(output, print_width, "Range   : %f miles", diagdist / 5280);
+-                }
+-                kwin->text.push_back(output);
+-            }
+-        }
+-        kwin->text.push_back("");
+-    }
+     snprintf(output, print_width, "Packets :");
+     kwin->text.push_back(output);
+diff -urN kismet.dev/panelfront_input.cc kismet.dev2/panelfront_input.cc
+--- kismet.dev/panelfront_input.cc     2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/panelfront_input.cc    2005-08-23 01:59:25.665216904 +0200
+@@ -300,16 +300,9 @@
+         break;
+     case 'f':
+     case 'F':
+-        if (sortby != sort_auto && last_displayed.size() > 0) {
+-            details_network = last_displayed[kwin->selected];
+-            SpawnWindow("Network Location", &PanelFront::GpsPrinter, &PanelFront::GpsInput, 8, 34);
+-        } else {
+-            WriteStatus("Cannot view network GPS info in autofit sort mode.  Sort by a different method.");
+-        }
+         break;
+     case 'm':
+     case 'M':
+-        MuteToggle();
+         break;
+     case 'e':
+     case 'E':
+@@ -447,7 +440,6 @@
+     switch(in_chr) {
+     case 'm':
+     case 'M':
+-        MuteToggle();
+         break;
+     case 'p':
+     case 'P':
+@@ -546,33 +538,6 @@
+     return 1;
+ }
+-int PanelFront::GpsInput(void *in_window, int in_chr) {
+-    kis_window *kwin = (kis_window *) in_window;
+-
+-    switch (in_chr) {
+-    case 's':
+-    case 'S':
+-        kwin->selected = 1;
+-        break;
+-    case 'c':
+-    case 'C':
+-        kwin->selected = 0;
+-        break;
+-    case 'h':
+-    case 'H':
+-        SpawnHelp(KismetHelpGps);
+-        break;
+-    case 'x':
+-    case 'X':
+-    case 'q':
+-    case 'Q':
+-        return 0;
+-        break;
+-    }
+-
+-    return 1;
+-}
+-
+ int PanelFront::RateInput(void *in_window, int in_chr) {
+     switch (in_chr) {
+     case 'h':
+@@ -645,24 +610,6 @@
+     return 1;
+ }
+-void PanelFront::MuteToggle() {
+-    if (muted) {
+-        speech = old_speech;
+-        sound = old_sound;
+-        muted = 0;
+-        WriteStatus("Restoring sound");
+-    } else if (sound != 0 || speech != 0) {
+-        old_speech = speech;
+-        old_sound = sound;
+-        sound = 0;
+-        speech = 0;
+-        muted = 1;
+-        WriteStatus("Muting sound");
+-    } else if (sound == 0 && speech == 0) {
+-        WriteStatus("Sound not enabled.");
+-    }
+-}
+-
+ int PanelFront::AlertInput(void *in_window, int in_chr) {
+     kis_window *kwin = (kis_window *) in_window;
+diff -urN kismet.dev/pcapsource.cc kismet.dev2/pcapsource.cc
+--- kismet.dev/pcapsource.cc   2005-08-23 01:03:45.652632608 +0200
++++ kismet.dev2/pcapsource.cc  2005-08-23 01:59:25.667216600 +0200
+@@ -343,11 +343,6 @@
+     packet->moddata = moddata;
+     packet->modified = 0;
+-    if (gpsd != NULL) {
+-        gpsd->FetchLoc(&packet->gps_lat, &packet->gps_lon, &packet->gps_alt,
+-                       &packet->gps_spd, &packet->gps_heading, &packet->gps_fix);
+-    }
+-
+     if (datalink_type == DLT_PRISM_HEADER) {
+         ret = Prism2KisPack(packet, data, moddata);
+     } else if (datalink_type == KDLT_BSD802_11) {
+@@ -1146,133 +1141,6 @@
+ // Monitor commands
+ #ifdef HAVE_LINUX_WIRELESS
+-// Cisco uses its own config file in /proc to control modes
+-int monitor_cisco(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    FILE *cisco_config;
+-    char cisco_path[128];
+-
+-    linux_ifparm *ifparm = (linux_ifparm *) malloc(sizeof(linux_ifparm));
+-    (*in_if) = ifparm;
+-
+-    if (Ifconfig_Get_Flags(in_dev, in_err, &ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if (Iwconfig_Get_SSID(in_dev, in_err, ifparm->essid) < 0)
+-        return -1;
+-
+-    if ((ifparm->channel = Iwconfig_Get_Channel(in_dev, in_err)) < 0)
+-        return -1;
+-
+-    if (Iwconfig_Get_Mode(in_dev, in_err, &ifparm->mode) < 0)
+-        return -1;
+-
+-    if (Ifconfig_Delta_Flags(in_dev, in_err, IFF_UP | IFF_RUNNING | IFF_PROMISC) < 0)
+-        return -1;
+-
+-    // Try the iwpriv
+-    if (Iwconfig_Set_IntPriv(in_dev, "setRFMonitor", 1, 0, in_err) >= 0) {
+-        return 0;
+-    }
+-
+-    // Zero the ssid - nonfatal
+-    Iwconfig_Set_SSID(in_dev, in_err, NULL);
+-   
+-    // Build the proc control path
+-    snprintf(cisco_path, 128, "/proc/driver/aironet/%s/Config", in_dev);
+-
+-    if ((cisco_config = fopen(cisco_path, "w")) == NULL) {
+-        snprintf(in_err, STATUS_MAX, "Unable to open cisco control file '%s' %d:%s",
+-                 cisco_path, errno, strerror(errno));
+-        return -1;
+-    }
+-
+-    fprintf(cisco_config, "Mode: r\n");
+-    fprintf(cisco_config, "Mode: y\n");
+-    fprintf(cisco_config, "XmitPower: 1\n");
+-
+-    fclose(cisco_config);
+-
+-    // Channel can't be set on cisco with these drivers.
+-
+-    return 0;
+-}
+-
+-int unmonitor_cisco(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-    int ret = -1;
+-
+-    // Try the iwpriv
+-    if (Iwconfig_Set_IntPriv(in_dev, "setRFMonitor", 0, 0, in_err) >= 0) {
+-        // If we're the new drivers, unmonitor
+-        if (Ifconfig_Set_Flags(in_dev, in_err, ifparm->flags) < 0) {
+-            return -1;
+-        }
+-
+-        // Reset the SSID since monitor mode nukes it
+-        if (Iwconfig_Set_SSID(in_dev, in_err, ifparm->essid) < 0)
+-            return -1;
+-
+-        if (ifparm->channel > 0) {
+-            if (Iwconfig_Set_Channel(in_dev, ifparm->channel, in_err) < 0)
+-                return -1;
+-        }
+-
+-        ret = 1;
+-    }
+-
+-    free(ifparm);
+-
+-    return ret;
+-}
+-
+-// Cisco uses its own config file in /proc to control modes
+-//
+-// I was doing this with ioctls but that seems to cause lockups while
+-// this method doesn't.  I don't think I like these drivers.
+-int monitor_cisco_wifix(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    FILE *cisco_config;
+-    char cisco_path[128];
+-    vector<string> devbits = StrTokenize(in_dev, ":");
+-
+-    if (devbits.size() < 2) {
+-        snprintf(in_err, STATUS_MAX, "Invalid device pair '%s'.  Proper device "
+-                               "for cisco_wifix is eth?:wifi?.", in_dev);
+-        return -1;
+-    }
+-
+-    // Bring the device up, zero its ip, and set promisc
+-    if (Ifconfig_Delta_Flags(devbits[0].c_str(), in_err, 
+-                             IFF_UP | IFF_RUNNING | IFF_PROMISC) < 0)
+-        return -1;
+-    if (Ifconfig_Delta_Flags(devbits[1].c_str(), in_err, 
+-                             IFF_UP | IFF_RUNNING | IFF_PROMISC) < 0)
+-        return -1;
+-
+-    // Zero the ssid, nonfatally
+-    Iwconfig_Set_SSID(devbits[0].c_str(), in_err, NULL);
+-    Iwconfig_Set_SSID(devbits[1].c_str(), in_err, NULL);
+-    
+-    // Build the proc control path
+-    snprintf(cisco_path, 128, "/proc/driver/aironet/%s/Config", devbits[0].c_str());
+-
+-    if ((cisco_config = fopen(cisco_path, "w")) == NULL) {
+-        snprintf(in_err, STATUS_MAX, "Unable to open cisco control file '%s' %d:%s",
+-                 cisco_path, errno, strerror(errno));
+-        return -1;
+-    }
+-
+-    fprintf(cisco_config, "Mode: r\n");
+-    fprintf(cisco_config, "Mode: y\n");
+-    fprintf(cisco_config, "XmitPower: 1\n");
+-
+-    fclose(cisco_config);
+-
+-    // Channel can't be set on cisco with these drivers.
+-
+-    return 0;
+-}
+-
+ // Hostap uses iwpriv and iwcontrol settings to control monitor mode
+ int monitor_hostap(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+     int ret;
+@@ -1421,134 +1289,6 @@
+     return 1;
+ }
+-
+-// Acx100 uses the packhdr iwpriv control to set link state, rest is normal
+-int monitor_acx100(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    int ret;
+-
+-    // Allocate a tracking record for the interface settings and remember our
+-    // setup
+-    linux_ifparm *ifparm = (linux_ifparm *) malloc(sizeof(linux_ifparm));
+-    (*in_if) = ifparm;
+-
+-    if (Ifconfig_Get_Flags(in_dev, in_err, &ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if (Iwconfig_Get_SSID(in_dev, in_err, ifparm->essid) < 0)
+-        return -1;
+-
+-    if ((ifparm->channel = Iwconfig_Get_Channel(in_dev, in_err)) < 0)
+-        return -1;
+-
+-    if (Iwconfig_Get_Mode(in_dev, in_err, &ifparm->mode) < 0)
+-        return -1;
+-
+-    // it looks like an orinoco now, apparently
+-    if ((ret = Iwconfig_Set_IntPriv(in_dev, "monitor", 1, initch, in_err)) < 0) {
+-        if (ret == -2)
+-            snprintf(in_err, 1024, "Could not find 'monitor' private ioctl "
+-                     "Make sure you have the latest ACX100 development release.");
+-        return -1;
+-    }
+-
+-    if (chancontrol_wext(in_dev, initch, in_err, NULL) < 0)
+-        return -1;
+-
+-    return 0;
+-}
+-
+-int unmonitor_acx100(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // Restore the IP settings
+-    linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    if (Ifconfig_Set_Flags(in_dev, in_err, ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    Iwconfig_Set_IntPriv(in_dev, "monitor", 0, ifparm->channel, in_err);
+-    Iwconfig_Set_Mode(in_dev, in_err, ifparm->mode);
+-
+-    if (Iwconfig_Set_SSID(in_dev, in_err, ifparm->essid) < 0)
+-        return -1;
+-    
+-    free(ifparm);
+-
+-    return 1;
+-}
+-
+-int monitor_admtek(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // Allocate a tracking record for the interface settings and remember our
+-    // setup
+-    linux_ifparm *ifparm = (linux_ifparm *) malloc(sizeof(linux_ifparm));
+-    (*in_if) = ifparm;
+-
+-    // Try to figure out the name so we know if we have fcs bytes or not
+-    char iwname[IFNAMSIZ+1];
+-    if (Iwconfig_Get_Name(in_dev, in_err, iwname) < 0)
+-        return -1;
+-
+-    if (strncmp(iwname, "IEEE 802.11b", IFNAMSIZ) == 0) {
+-        // Looks like the GPL driver, we need to adjust the fcsbytes
+-        PcapSource *psrc = (PcapSource *) in_ext;
+-        psrc->fcsbytes = 4;
+-    }
+-
+-    if (Ifconfig_Get_Flags(in_dev, in_err, &ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if ((ifparm->flags & IFF_UP)) {
+-        if ((ifparm->channel = Iwconfig_Get_Channel(in_dev, in_err)) < 0)
+-            return -1;
+-
+-        if (Iwconfig_Get_Mode(in_dev, in_err, &ifparm->mode) < 0)
+-            return -1;
+-
+-        if (Iwconfig_Get_SSID(in_dev, in_err, ifparm->essid) < 0)
+-            return -1;
+-    
+-    } else {
+-        ifparm->channel = -1;
+-        ifparm->mode = -1;
+-    }
+-
+-    int ret = monitor_wext(in_dev, initch, in_err, in_if, in_ext);
+-
+-    if (ret < 0 && ret != -2)
+-        return ret;
+-
+-    if (Iwconfig_Set_SSID(in_dev, in_err, "") < 0)
+-        return -1;
+-    
+-    return 0;
+-}
+-
+-int unmonitor_admtek(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    if (unmonitor_wext(in_dev, initch, in_err, in_if, in_ext))
+-        return -1;
+-
+-    if (Iwconfig_Set_SSID(in_dev, in_err, ifparm->essid) < 0)
+-        return -1;
+-   
+-    return 1;
+-}
+-// vtar5k iwpriv control to set link state, rest is normal
+-int monitor_vtar5k(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // Set the prism iwpriv control to 1
+-    if (Iwconfig_Set_IntPriv(in_dev, "prism", 1, 0, in_err) < 0) {
+-        return -1;
+-    }
+-    
+-    // The rest is standard wireless extensions
+-    if (monitor_wext(in_dev, initch, in_err, in_if, in_ext) < 0)
+-        return -1;
+-
+-    return 0;
+-}
+-
+ // Madwifi stuff uses iwpriv mode
+ int monitor_madwifi_a(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+     // Allocate a tracking record for the interface settings and remember our
+@@ -1726,89 +1466,6 @@
+     return unmonitor_wext(in_dev, initch, in_err, in_if, in_ext);
+ }
+-
+-int monitor_ipw2100(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // Allocate a tracking record for the interface settings and remember our
+-    // setup
+-    linux_ifparm *ifparm = (linux_ifparm *) malloc(sizeof(linux_ifparm));
+-    (*in_if) = ifparm;
+-
+-    if (Ifconfig_Get_Flags(in_dev, in_err, &ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if ((ifparm->channel = Iwconfig_Get_Channel(in_dev, in_err)) < 0)
+-        return -1;
+-
+-    if (Iwconfig_Get_Mode(in_dev, in_err, &ifparm->mode) < 0)
+-        return -1;
+-
+-    // Call the normal monitor mode
+-    return (monitor_wext(in_dev, initch, in_err, in_if, in_ext));
+-}
+-
+-int unmonitor_ipw2100(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // Restore initial monitor header
+-    // linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    if (Ifconfig_Set_Flags(in_dev, in_err, ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if (Iwconfig_Set_Mode(in_dev, in_err, ifparm->mode) < 0)
+-        return -1;
+-
+-    free(ifparm);
+-
+-    return 1;
+-}
+-
+-int monitor_ipw2200(const char *in_dev, int initch, char *in_err, 
+-                                      void **in_if, void *in_ext) {
+-    // Allocate a tracking record for the interface settings and remember our
+-    // setup
+-    linux_ifparm *ifparm = (linux_ifparm *) malloc(sizeof(linux_ifparm));
+-    (*in_if) = ifparm;
+-
+-    if (Ifconfig_Get_Flags(in_dev, in_err, &ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if ((ifparm->channel = Iwconfig_Get_Channel(in_dev, in_err)) < 0)
+-        return -1;
+-
+-    if (Iwconfig_Get_Mode(in_dev, in_err, &ifparm->mode) < 0)
+-        return -1;
+-
+-    // Call the normal monitor mode
+-    return (monitor_wext(in_dev, initch, in_err, in_if, in_ext));
+-}
+-
+-int unmonitor_ipw2200(const char *in_dev, int initch, char *in_err, 
+-                                        void **in_if, void *in_ext) {
+-    // Restore initial monitor header
+-    // linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    linux_ifparm *ifparm = (linux_ifparm *) (*in_if);
+-
+-    if (Ifconfig_Set_Flags(in_dev, in_err, ifparm->flags) < 0) {
+-        return -1;
+-    }
+-
+-    if (Iwconfig_Set_Mode(in_dev, in_err, ifparm->mode) < 0)
+-        return -1;
+-
+-      // James says this wants to be set to channel 0 for proper scanning operation
+-      if (Iwconfig_Set_Channel(in_dev, 0, in_err) < 0)
+-              return -1;
+-
+-    free(ifparm);
+-
+-    return 1;
+-}
+-
+ // "standard" wireless extension monitor mode
+ int monitor_wext(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+     int mode;
+@@ -1870,108 +1527,6 @@
+ #endif
+ #ifdef SYS_LINUX
+-// wlan-ng modern standard
+-int monitor_wlanng(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // I really didn't want to do this...
+-    char cmdline[2048];
+-
+-    // Sanitize the device just to be safe.  The ifconfig should fail if
+-    // the device is invalid, but why take risks
+-    for (unsigned int x = 0; x < strlen(in_dev); x++) {
+-        if (!isalnum(in_dev[x])) {
+-            snprintf(in_err, STATUS_MAX, "Invalid device '%s'", in_dev);
+-            return -1;
+-        }
+-    }
+-    
+-    if (Ifconfig_Delta_Flags(in_dev, in_err, IFF_UP | IFF_RUNNING | IFF_PROMISC) < 0)
+-        return -1;
+-
+-    // Enable the interface
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_ifstate ifstate=enable >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Turn off WEP
+-    snprintf(cmdline, 2048, "wlanctl-ng %s dot11req_mibset "
+-             "mibattribute=dot11PrivacyInvoked=false >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Don't exclude packets
+-    snprintf(cmdline, 2048, "wlanctl-ng %s dot11req_mibset "
+-             "mibattribute=dot11ExcludeUnencrypted=false >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Turn on rfmon on the initial channel
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_wlansniff channel=%d "
+-             "enable=true prismheader=true >/dev/null 2>/dev/null", in_dev, initch);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-    
+-    return 0;
+-}
+-
+-// wlan-ng avs
+-int monitor_wlanng_avs(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext) {
+-    // I really didn't want to do this...
+-    char cmdline[2048];
+-
+-    // Sanitize the device just to be safe.  The ifconfig should fail if
+-    // the device is invalid, but why take risks
+-    for (unsigned int x = 0; x < strlen(in_dev); x++) {
+-        if (!isalnum(in_dev[x])) {
+-            snprintf(in_err, STATUS_MAX, "Invalid device '%s'", in_dev);
+-            return -1;
+-        }
+-    }
+-
+-    if (Ifconfig_Delta_Flags(in_dev, in_err, IFF_UP | IFF_RUNNING | IFF_PROMISC) < 0)
+-        return -1;
+-
+-    // Enable the interface
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_ifstate ifstate=enable >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Turn off WEP
+-    snprintf(cmdline, 2048, "wlanctl-ng %s dot11req_mibset "
+-             "mibattribute=dot11PrivacyInvoked=false >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Don't exclude packets
+-    snprintf(cmdline, 2048, "wlanctl-ng %s dot11req_mibset "
+-             "mibattribute=dot11ExcludeUnencrypted=false >/dev/null 2>/dev/null", in_dev);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    // Turn on rfmon on the initial channel
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_wlansniff channel=%d prismheader=false "
+-             "wlanheader=true stripfcs=false keepwepflags=false enable=true >/dev/null 2>/dev/null", in_dev, initch);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-    
+-    return 0;
+-}
+-
+ int monitor_wrt54g(const char *in_dev, int initch, char *in_err, void **in_if, 
+                                  void *in_ext) {
+     char cmdline[2048];
+@@ -1981,7 +1536,7 @@
+                       snprintf(in_err, 1024, "Unable to set mode using 'iwpriv %s set_monitor 1'. "
+                                        "Some custom firmware images require you to specify the origial "
+                                        "device and a new dynamic device and use the iwconfig controls. "
+-                                       "see the README for how to configure your capture source.");
++                                       "see the README for how to configure your capture source.", in_dev);
+                       return -1;
+               }
+@@ -1998,7 +1553,7 @@
+                       snprintf(in_err, 1024, "Unable to set mode using 'iwpriv %s set_monitor 0'. "
+                                        "Some custom firmware images require you to specify the origial "
+                                        "device and a new dynamic device and use the iwconfig controls. "
+-                                       "see the README for how to configure your capture source.");
++                                       "see the README for how to configure your capture source.", in_dev);
+                       return -1;
+               }
+@@ -2244,75 +1799,6 @@
+     return 0;
+ }
+-int chancontrol_ipw2100(const char *in_dev, int in_ch, char *in_err, void *in_ext) {
+-    // Introduce a slight delay to let the driver settle, a la orinoco.  I don't
+-    // like doing this at all since it introduces hiccups into the channel control
+-    // process, but....
+-
+-    int ret = 0;
+-
+-    ret = chancontrol_wext(in_dev, in_ch, in_err, in_ext);
+-    usleep(5000);
+-
+-    return ret;
+-}
+-
+-int chancontrol_ipw2200(const char *in_dev, int in_ch, char *in_err, void *in_ext) {
+-      // Lets see if this really needs the channel change delay like the 2100 did
+-    int ret = 0;
+-
+-    ret = chancontrol_wext(in_dev, in_ch, in_err, in_ext);
+-      // Drop a tiny sleep in here to let the channel set settle, otherwise we
+-      // run the risk of the card freaking out
+-      usleep(7000);
+-
+-    return ret;
+-}
+-
+-#endif
+-
+-#ifdef SYS_LINUX
+-int chancontrol_wlanng(const char *in_dev, int in_ch, char *in_err, void *in_ext) {
+-    // I really didn't want to do this...
+-    char cmdline[2048];
+-
+-    // Turn on rfmon on the initial channel
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_wlansniff channel=%d enable=true "
+-             "prismheader=true >/dev/null 2>&1", in_dev, in_ch);
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    if (in_ext != NULL) {
+-        PcapSourceWlanng *src = (PcapSourceWlanng *) in_ext;
+-        src->last_channel = in_ch;
+-    }
+-    
+-    return 0;
+-}
+-
+-int chancontrol_wlanng_avs(const char *in_dev, int in_ch, char *in_err, void *in_ext) {
+-    // I really didn't want to do this...
+-    char cmdline[2048];
+-
+-    // Turn on rfmon on the initial channel
+-    snprintf(cmdline, 2048, "wlanctl-ng %s lnxreq_wlansniff channel=%d "
+-             "prismheader=false wlanheader=true stripfcs=false keepwepflags=false "
+-             "enable=true >/dev/null 2>&1", in_dev, in_ch);
+-
+-    if (RunSysCmd(cmdline) < 0) {
+-        snprintf(in_err, 1024, "Unable to execute '%s'", cmdline);
+-        return -1;
+-    }
+-
+-    if (in_ext != NULL) {
+-        PcapSourceWlanng *src = (PcapSourceWlanng *) in_ext;
+-        src->last_channel = in_ch;
+-    }
+-    
+-    return 0;
+-}
+ #endif
+ #ifdef SYS_OPENBSD
+diff -urN kismet.dev/tcpstreamer.cc kismet.dev2/tcpstreamer.cc
+--- kismet.dev/tcpstreamer.cc  2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/tcpstreamer.cc 2005-08-23 01:59:25.668216448 +0200
+@@ -30,8 +30,6 @@
+     serv_fd = 0;
+     max_fd = 0;
+-
+-      gpsd = NULL;
+ }
+ TcpStreamer::~TcpStreamer()
+@@ -287,10 +285,6 @@
+     hdr.frame_len = (uint32_t) htonl(sizeof(struct stream_version_packet));
+     vpkt.drone_version = (uint16_t) htons(STREAM_DRONE_VERSION);
+-      if (gpsd != NULL)
+-              vpkt.gps_enabled = 1;
+-      else
+-              vpkt.gps_enabled = 0;
+     if (!FD_ISSET(in_fd, &client_fds))
+         return -1;
+diff -urN kismet.dev/tcpstreamer.h kismet.dev2/tcpstreamer.h
+--- kismet.dev/tcpstreamer.h   2005-08-16 03:22:51.000000000 +0200
++++ kismet.dev2/tcpstreamer.h  2005-08-23 01:59:25.669216296 +0200
+@@ -42,7 +42,6 @@
+ #include "ringbuf.h"
+ #include "packet.h"
+ #include "packetstream.h"
+-#include "gpsd.h"
+ // Global in kismet_drone.cc
+ extern int silent;
+@@ -76,9 +75,6 @@
+     int FetchDescriptor() { return serv_fd; }
+-    // Register the GPS server for us to use
+-    void AddGpstracker(GPSD *in_gpsd) { gpsd = in_gpsd; }
+-
+     void Kill(int in_fd);
+     int Poll(fd_set& in_rset, fd_set& in_wset);
+@@ -124,8 +120,6 @@
+     fd_set client_fds;
+     unsigned int max_fd;
+-
+-      GPSD *gpsd;
+ };
+ #endif
diff --git a/openwrt/package/lighttpd/patches/500-configure_cross.patch b/openwrt/package/lighttpd/patches/500-configure_cross.patch
new file mode 100644 (file)
index 0000000..8f80998
--- /dev/null
@@ -0,0 +1,24 @@
+diff -ruN lighttpd-1.4.2-old/configure lighttpd-1.4.2-new/configure
+--- lighttpd-1.4.2-old/configure       2005-08-29 14:18:11.000000000 +0200
++++ lighttpd-1.4.2-new/configure       2005-09-01 09:06:29.000000000 +0200
+@@ -23849,7 +23849,7 @@
+ echo "$as_me:$LINENO: result: $WITH_PCRE" >&5
+ echo "${ECHO_T}$WITH_PCRE" >&6
+-if test "x$cross_compiling" = xno -a "$WITH_PCRE" != "no"; then
++if test "$WITH_PCRE" != "no"; then
+   # Extract the first word of "pcre-config", so it can be a program name with args.
+ set dummy pcre-config; ac_word=$2
+ echo "$as_me:$LINENO: checking for $ac_word" >&5
+diff -ruN lighttpd-1.4.2-old/configure.in lighttpd-1.4.2-new/configure.in
+--- lighttpd-1.4.2-old/configure.in    2005-08-29 14:06:03.000000000 +0200
++++ lighttpd-1.4.2-new/configure.in    2005-09-01 09:05:39.000000000 +0200
+@@ -222,7 +222,7 @@
+     [WITH_PCRE=$withval],[WITH_PCRE=yes])
+ AC_MSG_RESULT([$WITH_PCRE])
+-if test "x$cross_compiling" = xno -a "$WITH_PCRE" != "no"; then
++if test "$WITH_PCRE" != "no"; then
+   AC_PATH_PROG(PCRECONFIG, pcre-config)
+   if test x"$PCRECONFIG" != x; then 
diff --git a/openwrt/toolchain/binutils/2.16.1/100-uclibc-conf.patch b/openwrt/toolchain/binutils/2.16.1/100-uclibc-conf.patch
new file mode 100644 (file)
index 0000000..7c0a726
--- /dev/null
@@ -0,0 +1,586 @@
+diff -ur binutils-2.15.97.orig/bfd/config.bfd binutils-2.15.97/bfd/config.bfd
+--- binutils-2.15.97.orig/bfd/config.bfd       2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/bfd/config.bfd    2005-04-29 20:53:50.000000000 -0400
+@@ -140,7 +140,7 @@
+     targ_defvec=ecoffalpha_little_vec
+     targ_selvecs=bfd_elf64_alpha_vec
+     ;;
+-  alpha*-*-linux-gnu* | alpha*-*-elf*)
++  alpha*-*-linux-* | alpha*-*-elf*)
+     targ_defvec=bfd_elf64_alpha_vec
+     targ_selvecs=ecoffalpha_little_vec
+     ;;
+@@ -150,7 +150,7 @@
+   alpha*-*-*)
+     targ_defvec=ecoffalpha_little_vec
+     ;;
+-  ia64*-*-freebsd* | ia64*-*-netbsd* | ia64*-*-linux-gnu* | ia64*-*-elf* | ia64*-*-kfreebsd*-gnu)
++  ia64*-*-freebsd* | ia64*-*-netbsd* | ia64*-*-linux-* | ia64*-*-elf* | ia64*-*-kfreebsd*-gnu)
+     targ_defvec=bfd_elf64_ia64_little_vec
+     targ_selvecs="bfd_elf64_ia64_big_vec bfd_efi_app_ia64_vec"
+     ;;
+@@ -227,7 +227,7 @@
+     targ_defvec=bfd_elf32_littlearm_vec
+     targ_selvecs=bfd_elf32_bigarm_vec
+     ;;
+-  armeb-*-elf | arm*b-*-linux-gnu*)
++  armeb-*-elf | arm*b-*-linux-*)
+     targ_defvec=bfd_elf32_bigarm_vec
+     targ_selvecs=bfd_elf32_littlearm_vec
+     ;;
+@@ -235,7 +235,7 @@
+     targ_defvec=bfd_elf32_littlearm_vec
+     targ_selvecs=bfd_elf32_bigarm_vec
+     ;;
+-  arm-*-elf | arm-*-freebsd* | arm*-*-linux-gnu* | arm*-*-conix* | \
++  arm-*-elf | arm-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \
+   arm*-*-uclinux* | arm-*-kfreebsd*-gnu | \
+   arm*-*-eabi* )
+     targ_defvec=bfd_elf32_littlearm_vec
+@@ -385,7 +385,7 @@
+     ;;
+ #ifdef BFD64
+-  hppa*64*-*-linux-gnu*)
++  hppa*64*-*-linux-*)
+     targ_defvec=bfd_elf64_hppa_linux_vec
+     targ_selvecs=bfd_elf64_hppa_vec
+     ;;
+@@ -396,7 +396,7 @@
+     ;;
+ #endif
+-  hppa*-*-linux-gnu*)
++  hppa*-*-linux-*)
+     targ_defvec=bfd_elf32_hppa_linux_vec
+     targ_selvecs=bfd_elf32_hppa_vec
+     ;;
+@@ -529,7 +529,7 @@
+     targ_selvecs=bfd_elf32_i386_vec
+     targ_underscore=yes
+     ;;
+-  i[3-7]86-*-linux-gnu*)
++  i[3-7]86-*-linux-*)
+     targ_defvec=bfd_elf32_i386_vec
+     targ_selvecs="i386linux_vec bfd_efi_app_ia32_vec"
+     targ64_selvecs=bfd_elf64_x86_64_vec
+@@ -543,7 +543,7 @@
+     targ_defvec=bfd_elf64_x86_64_vec
+     targ_selvecs="bfd_elf32_i386_vec i386netbsd_vec i386coff_vec bfd_efi_app_ia32_vec"
+     ;;
+-  x86_64-*-linux-gnu*)
++  x86_64-*-linux-*)
+     targ_defvec=bfd_elf64_x86_64_vec
+     targ_selvecs="bfd_elf32_i386_vec i386linux_vec bfd_efi_app_ia32_vec"
+     ;;
+@@ -719,7 +719,7 @@
+     targ_selvecs=bfd_elf32_m68k_vec
+     targ_underscore=yes
+     ;;
+-  m68*-*-linux-gnu*)
++  m68*-*-linux-*)
+     targ_defvec=bfd_elf32_m68k_vec
+     targ_selvecs=m68klinux_vec
+     ;;
+@@ -1005,7 +1005,7 @@
+     ;;
+ #endif
+   powerpc-*-*bsd* | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | \
+-  powerpc-*-solaris2* | powerpc-*-linux-gnu* | powerpc-*-rtems* | \
++  powerpc-*-solaris2* | powerpc-*-linux-* | powerpc-*-rtems* | \
+   powerpc-*-chorus* | powerpc-*-vxworks* | powerpc-*-windiss*)
+     targ_defvec=bfd_elf32_powerpc_vec
+     targ_selvecs="rs6000coff_vec bfd_elf32_powerpcle_vec ppcboot_vec"
+@@ -1042,7 +1042,7 @@
+     targ_selvecs="rs6000coff_vec bfd_elf32_powerpc_vec ppcboot_vec"
+     ;;
+   powerpcle-*-elf* | powerpcle-*-sysv4* | powerpcle-*-eabi* | \
+-  powerpcle-*-solaris2* | powerpcle-*-linux-gnu* | powerpcle-*-vxworks* |\
++  powerpcle-*-solaris2* | powerpcle-*-linux-* | powerpcle-*-vxworks* |\
+   powerpcle-*-rtems*)
+     targ_defvec=bfd_elf32_powerpcle_vec
+     targ_selvecs="rs6000coff_vec bfd_elf32_powerpc_vec ppcboot_vec"
+@@ -1213,7 +1213,7 @@
+     targ_selvecs="bfd_elf32_sparc_vec sunos_big_vec"
+     targ_underscore=yes
+     ;;
+-  sparc-*-linux-gnu*)
++  sparc-*-linux-*)
+     targ_defvec=bfd_elf32_sparc_vec
+     targ_selvecs="sparclinux_vec bfd_elf64_sparc_vec sunos_big_vec"
+     ;;
+@@ -1260,7 +1260,7 @@
+     targ_defvec=sunos_big_vec
+     targ_underscore=yes
+     ;;
+-  sparc64-*-linux-gnu*)
++  sparc64-*-linux-*)
+     targ_defvec=bfd_elf64_sparc_vec
+     targ_selvecs="bfd_elf32_sparc_vec sparclinux_vec sunos_big_vec"
+     ;;
+@@ -1329,7 +1329,7 @@
+     targ_underscore=yes
+     ;;
+-  vax-*-linux-gnu*)
++  vax-*-linux-*)
+     targ_defvec=bfd_elf32_vax_vec
+     ;;
+diff -ur binutils-2.15.97.orig/bfd/configure binutils-2.15.97/bfd/configure
+--- binutils-2.15.97.orig/bfd/configure        2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/bfd/configure     2005-04-29 20:53:50.000000000 -0400
+@@ -9918,7 +9918,7 @@
+   alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
+       COREFILE=''
+       ;;
+-  alpha*-*-linux-gnu*)
++  alpha*-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/alphalinux.h"'
+       ;;
+@@ -9982,7 +9982,7 @@
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/i386mach3.h"'
+       ;;
+-  i[3-7]86-*-linux-gnu*)
++  i[3-7]86-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/i386linux.h"'
+       ;;
+@@ -10020,7 +10020,7 @@
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/hp300bsd.h"'
+       ;;
+-  m68*-*-linux-gnu*)
++  m68*-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/m68klinux.h"'
+       ;;
+@@ -10154,7 +10154,7 @@
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/vaxult2.h"'
+       ;;
+-  vax-*-linux-gnu*)
++  vax-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/vaxlinux.h"'
+       ;;
+diff -ur binutils-2.15.97.orig/bfd/configure.in binutils-2.15.97/bfd/configure.in
+--- binutils-2.15.97.orig/bfd/configure.in     2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/bfd/configure.in  2005-04-29 20:53:50.000000000 -0400
+@@ -163,7 +163,7 @@
+   alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
+       COREFILE=''
+       ;;
+-  alpha*-*-linux-gnu*)
++  alpha*-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/alphalinux.h"'
+       ;;
+@@ -248,7 +248,7 @@
+       TRAD_HEADER='"hosts/i386mach3.h"'
+       ;;
+ changequote(,)dnl
+-  i[3-7]86-*-linux-gnu*)
++  i[3-7]86-*-linux-*)
+ changequote([,])dnl
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/i386linux.h"'
+@@ -289,7 +289,7 @@
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/hp300bsd.h"'
+       ;;
+-  m68*-*-linux-gnu*)
++  m68*-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/m68klinux.h"'
+       ;;
+@@ -375,7 +375,7 @@
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/vaxult2.h"'
+       ;;
+-  vax-*-linux-gnu*)
++  vax-*-linux-*)
+       COREFILE=trad-core.lo
+       TRAD_HEADER='"hosts/vaxlinux.h"'
+       ;;
+diff -ur binutils-2.15.97.orig/gas/configure binutils-2.15.97/gas/configure
+--- binutils-2.15.97.orig/gas/configure        2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/gas/configure     2005-04-29 20:53:50.000000000 -0400
+@@ -4462,7 +4462,7 @@
+ _ACEOF
+       ;;
+-      ppc-*-linux-gnu*)
++      ppc-*-linux-*)
+       case "$endian" in
+         big)  ;;
+         *)    { { echo "$as_me:$LINENO: error: GNU/Linux must be configured big endian" >&5
+diff -ur binutils-2.15.97.orig/gas/configure.in binutils-2.15.97/gas/configure.in
+--- binutils-2.15.97.orig/gas/configure.in     2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/gas/configure.in  2005-04-29 20:53:50.000000000 -0400
+@@ -161,7 +161,7 @@
+       AC_DEFINE(AIX_WEAK_SUPPORT, 1,
+                 [Define if using AIX 5.2 value for C_WEAKEXT.])
+       ;;
+-      ppc-*-linux-gnu*)
++      ppc-*-linux-*)
+       case "$endian" in
+         big)  ;;
+         *)    AC_MSG_ERROR(GNU/Linux must be configured big endian) ;;
+diff -ur binutils-2.15.97.orig/gas/configure.tgt binutils-2.15.97/gas/configure.tgt
+--- binutils-2.15.97.orig/gas/configure.tgt    2005-04-29 20:48:14.000000000 -0400
++++ binutils-2.15.97/gas/configure.tgt 2005-04-29 20:53:50.000000000 -0400
+@@ -100,7 +100,7 @@
+   alpha-*-*vms*)                      fmt=evax ;;
+   alpha-*-osf*)                               fmt=ecoff ;;
+   alpha-*-linuxecoff*)                        fmt=ecoff ;;
+-  alpha-*-linux-gnu*)                 fmt=elf em=linux ;;
++  alpha-*-linux-*)                    fmt=elf em=linux ;;
+   alpha-*-netbsd*)                    fmt=elf em=nbsd ;;
+   alpha-*-openbsd*)                   fmt=elf em=obsd ;;
+@@ -116,7 +116,7 @@
+   arm-*-conix*)                               fmt=elf ;;
+   arm-*-linux*aout*)                  fmt=aout em=linux ;;
+   arm-*-linux-gnueabi*)                       fmt=elf  em=armlinuxeabi ;;      
+-  arm-*-linux-gnu*)                   fmt=elf  em=linux ;;
++  arm-*-linux-*)                      fmt=elf  em=linux ;;
+   arm-*-uclinux*)                     fmt=elf  em=linux ;;
+   arm-*-netbsdelf*)                   fmt=elf  em=nbsd ;;
+   arm-*-*n*bsd*)                      fmt=aout em=nbsd ;;
+@@ -128,7 +128,7 @@
+   avr-*-*)                            fmt=elf ;;
+-  cris-*-linux-gnu* | crisv32-*-linux-gnu*)
++  cris-*-linux-* | crisv32-*-linux-*)
+                                       fmt=multi bfd_gas=yes em=linux ;;
+   cris-*-* | crisv32-*-*)             fmt=multi bfd_gas=yes ;;
+@@ -192,7 +192,7 @@
+   i386-*-linux*aout*)                 fmt=aout em=linux ;;
+   i386-*-linux*oldld)                 fmt=aout em=linux ;;
+   i386-*-linux*coff*)                 fmt=coff em=linux ;;
+-  i386-*-linux-gnu*)                  fmt=elf em=linux ;;
++  i386-*-linux-*)                     fmt=elf em=linux ;;
+   i386-*-lynxos*)                     fmt=elf em=lynx bfd_gas=yes ;;
+   i386-*-sysv[45]*)                   fmt=elf ;;
+   i386-*-solaris*)                    fmt=elf ;;
+@@ -238,7 +238,7 @@
+   ia64-*-elf*)                                fmt=elf ;;
+   ia64-*-aix*)                                fmt=elf em=ia64aix ;;
+-  ia64-*-linux-gnu*)                  fmt=elf em=linux ;;
++  ia64-*-linux-*)                     fmt=elf em=linux ;;
+   ia64-*-hpux*)                               fmt=elf em=hpux ;;
+   ia64-*-netbsd*)                     fmt=elf em=nbsd ;;
+@@ -265,7 +265,7 @@
+   m68k-*-rtems*)                      fmt=elf ;;
+   m68k-*-hpux*)                               fmt=hp300 em=hp300 ;;
+   m68k-*-linux*aout*)                 fmt=aout em=linux ;;
+-  m68k-*-linux-gnu*)                  fmt=elf em=linux ;;
++  m68k-*-linux-*)                     fmt=elf em=linux ;;
+   m68k-*-uclinux*)                    fmt=elf ;;
+   m68k-*-gnu*)                                fmt=elf ;;
+   m68k-*-netbsdelf*)                  fmt=elf em=nbsd ;;
+@@ -332,7 +332,7 @@
+   ppc-*-beos*)                                fmt=coff ;;
+   ppc-*-*n*bsd* | ppc-*-elf*)         fmt=elf ;;
+   ppc-*-eabi* | ppc-*-sysv4*)         fmt=elf ;;
+-  ppc-*-linux-gnu*)                   fmt=elf em=linux ;;
++  ppc-*-linux-*)                      fmt=elf em=linux ;;
+   ppc-*-solaris*)                     fmt=elf ;;
+   ppc-*-rtems*)                               fmt=elf ;;
+   ppc-*-macos*)                               fmt=coff em=macos ;;
+@@ -340,7 +340,7 @@
+   ppc-*-kaos*)                                fmt=elf ;;
+   ppc-*-lynxos*)                      fmt=elf em=lynx bfd_gas=yes ;;
+-  s390-*-linux-gnu*)                  fmt=elf em=linux ;;
++  s390-*-linux-*)                     fmt=elf em=linux ;;
+   s390-*-tpf*)                                fmt=elf ;;
+   sh*-*-linux*)                               fmt=elf em=linux
+@@ -369,7 +369,7 @@
+   sparc-*-aout | sparc*-*-vxworks*)   fmt=aout em=sparcaout ;;
+   sparc-*-coff)                               fmt=coff ;;
+   sparc-*-linux*aout*)                        fmt=aout em=linux ;;
+-  sparc-*-linux-gnu*)                 fmt=elf em=linux ;;
++  sparc-*-linux-*)                    fmt=elf em=linux ;;
+   sparc-fujitsu-none)                 fmt=aout ;;
+   sparc-*-elf)                                fmt=elf ;;
+   sparc-*-sysv4*)                     fmt=elf ;;
+@@ -398,7 +398,7 @@
+   vax-*-netbsdelf*)                   fmt=elf em=nbsd ;;
+   vax-*-netbsd*)                      fmt=aout em=nbsd ;;
+   vax-*-bsd* | vax-*-ultrix*)         fmt=aout ;;
+-  vax-*-linux-gnu*)                   fmt=elf em=linux bfd_gas=yes ;;
++  vax-*-linux-*)                      fmt=elf em=linux bfd_gas=yes ;;
+   w65-*-*)                            fmt=coff ;;
+diff -ur binutils-2.15.97.orig/ld/configure.host binutils-2.15.97/ld/configure.host
+--- binutils-2.15.97.orig/ld/configure.host    2005-04-29 20:48:15.000000000 -0400
++++ binutils-2.15.97/ld/configure.host 2005-04-29 20:53:50.000000000 -0400
+@@ -83,7 +83,7 @@
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,ld\[^ \]\*,ld-linux,g"`
+   ;;
+-arm*-*-linux-gnu*)
++arm*-*-linux-*)
+   HOSTING_CRT0='-p '`echo "$HOSTING_CRT0" | sed -e "s,ld\[^ \]\*,ld-linux,g"`
+   ;;
+@@ -141,7 +141,7 @@
+   HOSTING_LIBS="$HOSTING_LIBS"' -lcygwin -L/usr/lib/w32api -luser32 -lkernel32 -ladvapi32 -lshell32 `if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else ${CC} -print-libgcc-file-name; fi`'
+   ;;
+-ia64-*-linux-gnu*)
++ia64-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,ld\[^ \]*\*,ld-linux-ia64,g"`
+   ;;
+@@ -155,11 +155,11 @@
+   HOSTING_LIBS='-L/usr/lib32 '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o ; else ${CC} -print-file-name=crtend.o; fi` /usr/lib32/crtn.o -init __do_global_ctors -fini __do_global_dtors'
+   ;;
+-mips*-*-linux-gnu*)
++mips*-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld.so.1,"`
+   ;;
+-m68*-*-linux-gnu*)
++m68*-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld.so.1,"`
+   ;;
+@@ -183,19 +183,19 @@
+   HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi`'
+   ;;
+-powerpc64*-*-linux-gnu*)
++powerpc64*-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib64/ld64.so.1,"`
+   ;;
+-powerpc*-*-linux-gnu*)
++powerpc*-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld.so.1,"`
+   ;;
+-s390x-*-linux-gnu*)
++s390x-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld64.so.1,"`
+   ;;
+-s390-*-linux-gnu*)
++s390-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld.so.1,"`
+   ;;
+@@ -209,15 +209,15 @@
+   HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else ${CC} -print-file-name=crtn.o; fi`'
+   ;;
+-sparc-*-linux-gnu*)
++sparc-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib/ld-linux.so.2,"`
+   ;;
+-sparc64-*-linux-gnu*)
++sparc64-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib64/ld-linux.so.2,"`
+   ;;
+-x86_64-*-linux-gnu*)
++x86_64-*-linux-*)
+   HOSTING_CRT0=`echo "$HOSTING_CRT0" | sed -e "s,\\\`specs.*\"\\\`,/lib64/ld-linux-x86-64.so.2,"`
+   ;;
+diff -ur binutils-2.15.97.orig/ld/configure.tgt binutils-2.15.97/ld/configure.tgt
+--- binutils-2.15.97.orig/ld/configure.tgt     2005-04-29 20:48:15.000000000 -0400
++++ binutils-2.15.97/ld/configure.tgt  2005-04-29 20:53:50.000000000 -0400
+@@ -30,7 +30,7 @@
+ cris-*-*aout*)                targ_emul=crisaout
+                       targ_extra_emuls="criself crislinux"
+                       targ_extra_libpath=$targ_extra_emuls ;;
+-cris-*-linux-gnu* | cris-*-linux-gnu*)
++cris-*-linux-* | crisv32-*-linux-*)
+                       targ_emul=crislinux ;;
+ cris-*-* | crisv32-*-*)       targ_emul=criself
+                       targ_extra_emuls="crisaout crislinux"
+@@ -62,14 +62,14 @@
+                       tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/aout//'`
+                       tdir_sun4=sparc-sun-sunos4
+                       ;;
+-sparc64-*-linux-gnu*) targ_emul=elf64_sparc
++sparc64-*-linux-*)    targ_emul=elf64_sparc
+                       targ_extra_emuls="elf32_sparc sparclinux sun4"
+                       targ_extra_libpath=elf32_sparc
+                       tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'`
+                       tdir_sparclinux=${tdir_elf32_sparc}aout
+                       tdir_sun4=sparc-sun-sunos4
+                       ;;
+-sparc*-*-linux-gnu*)  targ_emul=elf32_sparc
++sparc*-*-linux-*)     targ_emul=elf32_sparc
+                       targ_extra_emuls="sparclinux elf64_sparc sun4"
+                       targ_extra_libpath=elf64_sparc
+                       tdir_sparclinux=${targ_alias}aout
+@@ -119,8 +119,8 @@
+ ia64-*-aix*)          targ_emul=elf64_aix ;;
+ m32r*le-*-elf*)         targ_emul=m32rlelf ;;
+ m32r*-*-elf*)           targ_emul=m32relf ;;
+-m32r*le-*-linux-gnu*)   targ_emul=m32rlelf_linux ;;
+-m32r*-*-linux-gnu*)     targ_emul=m32relf_linux ;;
++m32r*le-*-linux-*)      targ_emul=m32rlelf_linux ;;
++m32r*-*-linux-*)        targ_emul=m32relf_linux ;;
+ m68hc11-*-*|m6811-*-*)        targ_emul=m68hc11elf 
+                       targ_extra_emuls="m68hc11elfb m68hc12elf m68hc12elfb" ;;
+ m68hc12-*-*|m6812-*-*)        targ_emul=m68hc12elf 
+@@ -131,7 +131,7 @@
+ m68*-apple-aux*)      targ_emul=m68kaux ;;
+ maxq-*-coff)            targ_emul=maxqcoff;;
+ *-tandem-none)                targ_emul=st2000 ;;
+-i370-*-elf* | i370-*-linux-gnu*) targ_emul=elf32i370 ;;
++i370-*-elf* | i370-*-linux-*) targ_emul=elf32i370 ;;
+ i[3-7]86-*-nto-qnx*)  targ_emul=i386nto ;;
+ i[3-7]86-*-vsta)      targ_emul=vsta ;;
+ i[3-7]86-go32-rtems*) targ_emul=i386go32 ;;
+@@ -155,14 +155,14 @@
+                       tdir_elf_i386=`echo ${targ_alias} | sed -e 's/aout//'`
+                       ;;
+ i[3-7]86-*-linux*oldld)       targ_emul=i386linux; targ_extra_emuls=elf_i386 ;;
+-i[3-7]86-*-linux-gnu*)        targ_emul=elf_i386
++i[3-7]86-*-linux-*)   targ_emul=elf_i386
+                       targ_extra_emuls=i386linux
+                       if test x${want64} = xtrue; then
+                         targ_extra_emuls="$targ_extra_emuls elf_x86_64"
+                       fi
+                       tdir_i386linux=${targ_alias}aout
+                       ;;
+-x86_64-*-linux-gnu*)  targ_emul=elf_x86_64
++x86_64-*-linux-*)     targ_emul=elf_x86_64
+                       targ_extra_emuls="elf_i386 i386linux"
+                       targ_extra_libpath=elf_i386
+                       tdir_i386linux=`echo ${targ_alias}aout | sed -e 's/x86_64/i386/'`
+@@ -262,13 +262,13 @@
+ arm-*-kaos*)          targ_emul=armelf ;;
+ arm9e-*-elf)          targ_emul=armelf ;;
+ arm*b-*-linux-gnueabi)        targ_emul=armelfb_linux_eabi ;;
+-arm*b-*-linux-gnu*)   targ_emul=armelfb_linux; targ_extra_emuls=armelfb ;;
++arm*b-*-linux-*)      targ_emul=armelfb_linux; targ_extra_emuls=armelfb ;;
+ arm*-*-linux-gnueabi) targ_emul=armelf_linux_eabi ;;
+-arm*-*-linux-gnu*)    targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
++arm*-*-linux-*)               targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
+ arm*-*-uclinux*)      targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
+ arm-*-vxworks)                targ_emul=armelf_vxworks ;;
+ arm*-*-conix*)                targ_emul=armelf ;;
+-thumb-*-linux-gnu* | thumb-*-uclinux*)        targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
++thumb-*-linux-* | thumb-*-uclinux*)   targ_emul=armelf_linux; targ_extra_emuls=armelf ;;
+ strongarm-*-coff)     targ_emul=armcoff ;;
+ strongarm-*-elf)      targ_emul=armelf ;;
+ strongarm-*-kaos*)    targ_emul=armelf ;;
+@@ -372,7 +372,7 @@
+                       targ_extra_emuls=m68kelf
+                       tdir_m68kelf=`echo ${targ_alias} | sed -e 's/aout//'`
+                       ;;
+-m68k-*-linux-gnu*)    targ_emul=m68kelf
++m68k-*-linux-*)       targ_emul=m68kelf
+                       targ_extra_emuls=m68klinux
+                       tdir_m68klinux=`echo ${targ_alias} | sed -e 's/linux/linuxaout/'`
+                       ;;
+@@ -388,9 +388,9 @@
+ m68*-*-psos*)         targ_emul=m68kpsos ;;
+ m68*-*-rtemscoff*)    targ_emul=m68kcoff ;;
+ m68*-*-rtems*)                targ_emul=m68kelf ;;
+-hppa*64*-*-linux-gnu*)        targ_emul=hppa64linux ;;
++hppa*64*-*-linux-*)   targ_emul=hppa64linux ;;
+ hppa*64*-*)           targ_emul=elf64hppa ;;
+-hppa*-*-linux-gnu*)   targ_emul=hppalinux ;;
++hppa*-*-linux-*)      targ_emul=hppalinux ;;
+ hppa*-*-*elf*)                targ_emul=hppaelf ;;
+ hppa*-*-lites*)               targ_emul=hppaelf ;;
+ hppa*-*-netbsd*)      targ_emul=hppanbsd ;;
+@@ -402,7 +402,7 @@
+ vax-*-netbsdaout* | vax-*-netbsd*)
+                       targ_emul=vaxnbsd
+                       targ_extra_emuls=elf32vax ;;
+-vax-*-linux-gnu*)     targ_emul=elf32vax ;;
++vax-*-linux-*)        targ_emul=elf32vax ;;
+ mips*-*-pe)           targ_emul=mipspe ;
+                       targ_extra_ofiles="deffilep.o pe-dll.o" ;;
+ mips*-dec-ultrix*)    targ_emul=mipslit ;;
+@@ -436,18 +436,18 @@
+ mips*-*-vxworks*)     targ_emul=elf32ebmip
+                       targ_extra_emuls="elf32elmip" ;;
+ mips*-*-windiss)      targ_emul=elf32mipswindiss ;;
+-mips64*el-*-linux-gnu*)       targ_emul=elf32ltsmipn32
++mips64*el-*-linux-*)  targ_emul=elf32ltsmipn32
+                       targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip"
+                       targ_extra_libpath="elf32ltsmip elf64ltsmip"
+                       ;;
+-mips64*-*-linux-gnu*) targ_emul=elf32btsmipn32
++mips64*-*-linux-*)    targ_emul=elf32btsmipn32
+                       targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip"
+                       targ_extra_libpath="elf32btsmip elf64btsmip"
+                       ;;
+-mips*el-*-linux-gnu*) targ_emul=elf32ltsmip
++mips*el-*-linux-*)    targ_emul=elf32ltsmip
+                       targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"
+                       ;;
+-mips*-*-linux-gnu*)   targ_emul=elf32btsmip
++mips*-*-linux-*)      targ_emul=elf32btsmip
+                       targ_extra_emuls="elf32ltsmip elf32btsmipn32 elf64btsmip elf32ltsmipn32 elf64ltsmip"
+                       ;;
+ mips*-*-lnews*)               targ_emul=mipslnews ;;
+@@ -467,7 +467,7 @@
+ alpha*-*-linuxecoff*) targ_emul=alpha targ_extra_emuls=elf64alpha
+                       tdir_elf64alpha=`echo ${targ_alias} | sed -e 's/ecoff//'`
+                       ;;
+-alpha*-*-linux-gnu*)  targ_emul=elf64alpha targ_extra_emuls=alpha
++alpha*-*-linux-*)     targ_emul=elf64alpha targ_extra_emuls=alpha
+                       tdir_alpha=`echo ${targ_alias} | sed -e 's/linux/linuxecoff/'`
+                       ;;
+ alpha*-*-osf*)                targ_emul=alpha ;;
+diff -ur binutils-2.15.97.orig/ld/emultempl/elf32.em binutils-2.15.97/ld/emultempl/elf32.em
+--- binutils-2.15.97.orig/ld/emultempl/elf32.em        2005-04-29 20:48:15.000000000 -0400
++++ binutils-2.15.97/ld/emultempl/elf32.em     2005-04-29 20:53:50.000000000 -0400
+@@ -65,7 +65,7 @@
+ if [ "x${USE_LIBPATH}" = xyes ] ; then
+   case ${target} in
+-    *-*-linux-gnu*)
++    *-*-linux-*)
+   cat >>e${EMULATION_NAME}.c <<EOF
+ #ifdef HAVE_GLOB
+ #include <glob.h>
+@@ -350,7 +350,7 @@
+ EOF
+ case ${target} in
+-  *-*-linux-gnu*)
++  *-*-linux-*)
+     cat >>e${EMULATION_NAME}.c <<EOF
+         {
+           struct bfd_link_needed_list *l;
+@@ -522,7 +522,7 @@
+ EOF
+   case ${target} in
+-    *-*-linux-gnu*)
++    *-*-linux-*)
+       cat >>e${EMULATION_NAME}.c <<EOF
+ /* For a native linker, check the file /etc/ld.so.conf for directories
+    in which we may find shared libraries.  /etc/ld.so.conf is really
+@@ -932,7 +932,7 @@
+ EOF
+ if [ "x${USE_LIBPATH}" = xyes ] ; then
+   case ${target} in
+-    *-*-linux-gnu*)
++    *-*-linux-*)
+       cat >>e${EMULATION_NAME}.c <<EOF
+         if (gld${EMULATION_NAME}_check_ld_so_conf (l->name, force))
+           break;
diff --git a/openwrt/toolchain/binutils/2.16.1/110-uclibc-libtool-conf.patch b/openwrt/toolchain/binutils/2.16.1/110-uclibc-libtool-conf.patch
new file mode 100644 (file)
index 0000000..ec38caa
--- /dev/null
@@ -0,0 +1,218 @@
+diff -urN binutils-2.16.90.0.2-dist/bfd/configure binutils-2.16.90.0.2/bfd/configure
+--- binutils-2.16.90.0.2-dist/bfd/configure    2005-04-29 12:50:24.000000000 -0500
++++ binutils-2.16.90.0.2/bfd/configure 2005-04-30 11:34:59.246377032 -0500
+@@ -3584,6 +3584,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+diff -urN binutils-2.16.90.0.2-dist/binutils/configure binutils-2.16.90.0.2/binutils/configure
+--- binutils-2.16.90.0.2-dist/binutils/configure       2005-04-29 12:50:26.000000000 -0500
++++ binutils-2.16.90.0.2/binutils/configure    2005-04-30 11:35:28.900868864 -0500
+@@ -1577,6 +1577,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+diff -urN binutils-2.16.90.0.2-dist/configure binutils-2.16.90.0.2/configure
+--- binutils-2.16.90.0.2-dist/configure        2005-04-29 12:50:23.000000000 -0500
++++ binutils-2.16.90.0.2/configure     2005-04-30 11:31:12.525843792 -0500
+@@ -1111,7 +1111,7 @@
+     ;;
+ "")
+     case "${target}" in
+-    *-*-linux*-gnu | *-*-gnu* | *-*-k*bsd*-gnu)
++    *-*-linux*-gnu | *-*-gnu* | *-*-k*bsd*-gnu | *-*-linux-uclibc*)
+         # Enable libmudflap by default in GNU and friends.
+       ;;
+     *-*-freebsd*)
+diff -urN binutils-2.16.90.0.2-dist/configure.in binutils-2.16.90.0.2/configure.in
+--- binutils-2.16.90.0.2-dist/configure.in     2005-04-29 12:50:23.000000000 -0500
++++ binutils-2.16.90.0.2/configure.in  2005-04-30 11:29:51.643139832 -0500
+@@ -328,7 +328,7 @@
+     ;;
+ "")
+     case "${target}" in
+-    *-*-linux*-gnu | *-*-gnu* | *-*-k*bsd*-gnu)
++    *-*-linux*-gnu | *-*-gnu* | *-*-k*bsd*-gnu | *-*-linux-uclibc*)
+         # Enable libmudflap by default in GNU and friends.
+       ;;
+     *-*-freebsd*)
+diff -urN binutils-2.16.90.0.2-dist/gas/configure binutils-2.16.90.0.2/gas/configure
+--- binutils-2.16.90.0.2-dist/gas/configure    2005-04-29 12:50:27.000000000 -0500
++++ binutils-2.16.90.0.2/gas/configure 2005-04-30 11:35:21.097055224 -0500
+@@ -3421,6 +3421,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+diff -urN binutils-2.16.90.0.2-dist/gas/testsuite/gas/sh/basic.exp binutils-2.16.90.0.2/gas/testsuite/gas/sh/basic.exp
+--- binutils-2.16.90.0.2-dist/gas/testsuite/gas/sh/basic.exp   2005-04-09 14:03:14.000000000 -0500
++++ binutils-2.16.90.0.2/gas/testsuite/gas/sh/basic.exp        2005-04-30 11:41:57.301822944 -0500
+@@ -20,7 +20,7 @@
+ # Written by Cygnus Support.
+-if [istarget "sh*-*-linux-gnu"] {
++if {[istarget "sh*-*-linux-gnu"] || [istarget "sh*-*-linux-uclibc"]} {
+     global ASFLAGS
+     set ASFLAGS "$ASFLAGS -big"
+ }
+diff -urN binutils-2.16.90.0.2-dist/gprof/configure binutils-2.16.90.0.2/gprof/configure
+--- binutils-2.16.90.0.2-dist/gprof/configure  2005-04-29 12:50:29.000000000 -0500
++++ binutils-2.16.90.0.2/gprof/configure       2005-04-30 11:35:36.880655752 -0500
+@@ -3419,6 +3419,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+diff -urN binutils-2.16.90.0.2-dist/ld/configure binutils-2.16.90.0.2/ld/configure
+--- binutils-2.16.90.0.2-dist/ld/configure     2005-04-29 12:50:30.000000000 -0500
++++ binutils-2.16.90.0.2/ld/configure  2005-04-30 11:46:15.974498720 -0500
+@@ -1581,6 +1581,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+diff -urN binutils-2.16.90.0.2-dist/ld/testsuite/ld-sh/sh.exp binutils-2.16.90.0.2/ld/testsuite/ld-sh/sh.exp
+--- binutils-2.16.90.0.2-dist/ld/testsuite/ld-sh/sh.exp        2005-04-09 14:03:29.000000000 -0500
++++ binutils-2.16.90.0.2/ld/testsuite/ld-sh/sh.exp     2005-04-30 11:45:07.890849008 -0500
+@@ -62,7 +62,7 @@
+ set testsrec "SH relaxing to S-records"
+-if [istarget sh*-linux-gnu] {
++if {[istarget sh*-linux-gnu] || [istarget sh*-*-linux-uclibc]} {
+     # This target needs the explicit entry address.
+     catch "exec $objdump -x tmpdir/sh1 | grep start\\ address | sed s/start\\ address//" entry_addr
+     set srec_relax_arg "-Ttext $entry_addr -relax --oformat srec tmpdir/sh1.o"
+@@ -117,7 +117,7 @@
+     return
+ }
+-if [istarget sh*-linux-gnu] {
++if {[istarget sh*-linux-gnu] || [istarget sh*-*-linux-uclibc]} {
+     exec sed -e s/_main/main/ -e s/_trap/trap/ -e s/_stack/stack/ \
+           < $srcdir/$subdir/start.s >tmpdir/start.s
+ } else {
+diff -urN binutils-2.16.90.0.2-dist/ld/testsuite/ld-srec/srec.exp binutils-2.16.90.0.2/ld/testsuite/ld-srec/srec.exp
+--- binutils-2.16.90.0.2-dist/ld/testsuite/ld-srec/srec.exp    2005-04-29 12:50:30.000000000 -0500
++++ binutils-2.16.90.0.2/ld/testsuite/ld-srec/srec.exp 2005-04-30 11:44:26.358162936 -0500
+@@ -385,7 +385,7 @@
+ setup_xfail "v850*-*-elf"
+ # The S-record linker doesn't handle Alpha Elf relaxation.
+-setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*"
++setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*" "alpha*-*-linux-uclibc*"
+ setup_xfail "alpha*-*-netbsd*"
+ # The S-record linker hasn't any hope of coping with HPPA relocs.
+@@ -424,7 +424,7 @@
+ setup_xfail "thumb-*-*"
+ setup_xfail "powerpc*-*-eabi*"
+ setup_xfail "v850*-*-elf"
+-setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*"
++setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*" "alpha*-*-linux-uclibc*"
+ setup_xfail "alpha*-*-netbsd*"
+ setup_xfail "hppa*-*-*"
+ setup_xfail "ia64-*-*"
+diff -urN binutils-2.16.90.0.2-dist/libtool.m4 binutils-2.16.90.0.2/libtool.m4
+--- binutils-2.16.90.0.2-dist/libtool.m4       2004-07-27 23:36:06.000000000 -0500
++++ binutils-2.16.90.0.2/libtool.m4    2005-04-30 11:35:54.062043784 -0500
+@@ -645,6 +645,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     [lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$']
+diff -urN binutils-2.16.90.0.2-dist/ltconfig binutils-2.16.90.0.2/ltconfig
+--- binutils-2.16.90.0.2-dist/ltconfig 2004-11-22 14:33:30.000000000 -0600
++++ binutils-2.16.90.0.2/ltconfig      2005-04-30 11:22:10.594229920 -0500
+@@ -602,6 +602,7 @@
+ # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
+ case $host_os in
++linux-uclibc*) ;;
+ linux-gnu*) ;;
+ linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
+ esac
+@@ -1270,6 +1271,23 @@
+   dynamic_linker='GNU/Linux ld.so'
+   ;;
++linux-uclibc*)
++  version_type=linux
++  need_lib_prefix=no
++  need_version=no
++  library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
++  soname_spec='${libname}${release}.so$major'
++  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
++  shlibpath_var=LD_LIBRARY_PATH
++  shlibpath_overrides_runpath=no
++  # This implies no fast_install, which is unacceptable.
++  # Some rework will be needed to allow for fast_install
++  # before this can be enabled.
++  hardcode_into_libs=yes
++  # Assume using the uClibc dynamic linker.
++  dynamic_linker="uClibc ld.so"
++  ;;
++
+ netbsd*)
+   need_lib_prefix=no
+   need_version=no
+diff -urN binutils-2.16.90.0.2-dist/opcodes/configure binutils-2.16.90.0.2/opcodes/configure
+--- binutils-2.16.90.0.2-dist/opcodes/configure        2005-04-29 12:50:31.000000000 -0500
++++ binutils-2.16.90.0.2/opcodes/configure     2005-04-30 11:17:07.168357664 -0500
+@@ -3588,6 +3588,11 @@
+   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+   ;;
++linux-uclibc*)
++  lt_cv_deplibs_check_method=pass_all
++  lt_cv_file_magic_test_file=`echo /lib/libuClibc-*.so`
++  ;;
++
+ netbsd* | knetbsd*-gnu)
+   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+     lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
diff --git a/openwrt/toolchain/binutils/2.16.1/300-001_ld_makefile_patch.patch b/openwrt/toolchain/binutils/2.16.1/300-001_ld_makefile_patch.patch
new file mode 100644 (file)
index 0000000..b25d5b7
--- /dev/null
@@ -0,0 +1,52 @@
+#!/bin/sh -e
+## 001_ld_makefile_patch.dpatch
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Description: correct where ld scripts are installed
+## DP: Author: Chris Chimelis <chris@debian.org>
+## DP: Upstream status: N/A
+## DP: Date: ??
+
+if [ $# -ne 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+       -patch) patch $patch_opts -p1 < $0;;
+       -unpatch) patch $patch_opts -p1 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+                exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad /home/james/debian/packages/binutils/binutils-2.14.90.0.6/ld/Makefile.am binutils-2.14.90.0.6/ld/Makefile.am
+--- /home/james/debian/packages/binutils/binutils-2.14.90.0.6/ld/Makefile.am   2003-08-21 16:28:48.000000000 +0100
++++ binutils-2.14.90.0.6/ld/Makefile.am        2003-09-10 23:12:09.000000000 +0100
+@@ -19,7 +19,7 @@
+ # We put the scripts in the directory $(scriptdir)/ldscripts.
+ # We can't put the scripts in $(datadir) because the SEARCH_DIR
+ # directives need to be different for native and cross linkers.
+-scriptdir = $(tooldir)/lib
++scriptdir = $(libdir)
+ EMUL = @EMUL@
+ EMULATION_OFILES = @EMULATION_OFILES@
+diff -urNad /home/james/debian/packages/binutils/binutils-2.14.90.0.6/ld/Makefile.in binutils-2.14.90.0.6/ld/Makefile.in
+--- /home/james/debian/packages/binutils/binutils-2.14.90.0.6/ld/Makefile.in   2003-08-21 16:28:48.000000000 +0100
++++ binutils-2.14.90.0.6/ld/Makefile.in        2003-09-10 23:12:09.000000000 +0100
+@@ -128,7 +128,7 @@
+ # We put the scripts in the directory $(scriptdir)/ldscripts.
+ # We can't put the scripts in $(datadir) because the SEARCH_DIR
+ # directives need to be different for native and cross linkers.
+-scriptdir = $(tooldir)/lib
++scriptdir = $(libdir)
+ EMUL = @EMUL@
+ EMULATION_OFILES = @EMULATION_OFILES@
diff --git a/openwrt/toolchain/binutils/2.16.1/300-006_better_file_error.patch b/openwrt/toolchain/binutils/2.16.1/300-006_better_file_error.patch
new file mode 100644 (file)
index 0000000..f337611
--- /dev/null
@@ -0,0 +1,43 @@
+#!/bin/sh -e
+## 006_better_file_error.dpatch by David Kimdon <dwhedon@gordian.com>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Specify which filename is causing an error if the filename is a
+## DP: directory. (#45832)
+
+if [ $# -ne 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+       -patch) patch $patch_opts -p1 < $0;;
+       -unpatch) patch $patch_opts -p1 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+                exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad /home/james/debian/packages/binutils/binutils-2.14.90.0.6/bfd/opncls.c binutils-2.14.90.0.6/bfd/opncls.c
+--- /home/james/debian/packages/binutils/binutils-2.14.90.0.6/bfd/opncls.c     2003-07-23 16:08:09.000000000 +0100
++++ binutils-2.14.90.0.6/bfd/opncls.c  2003-09-10 22:35:00.000000000 +0100
+@@ -150,6 +150,13 @@
+ {
+   bfd *nbfd;
+   const bfd_target *target_vec;
++  struct stat s;
++
++  if (stat (filename, &s) == 0)
++    if (S_ISDIR(s.st_mode)) {
++      bfd_set_error (bfd_error_file_not_recognized);
++      return NULL;
++    }
+   nbfd = _bfd_new_bfd ();
+   if (nbfd == NULL)
diff --git a/openwrt/toolchain/binutils/2.16.1/300-012_check_ldrunpath_length.patch b/openwrt/toolchain/binutils/2.16.1/300-012_check_ldrunpath_length.patch
new file mode 100644 (file)
index 0000000..498651a
--- /dev/null
@@ -0,0 +1,47 @@
+#!/bin/sh -e
+## 012_check_ldrunpath_length.dpatch by Chris Chimelis <chris@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Only generate an RPATH entry if LD_RUN_PATH is not empty, for
+## DP: cases where -rpath isn't specified. (#151024)
+
+if [ $# -ne 1 ]; then
+    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+    exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+       -patch) patch $patch_opts -p1 < $0;;
+       -unpatch) patch $patch_opts -p1 -R < $0;;
+        *)
+                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+                exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad /home/james/debian/packages/binutils/new/binutils-2.15/ld/emultempl/elf32.em binutils-2.15/ld/emultempl/elf32.em
+--- /home/james/debian/packages/binutils/new/binutils-2.15/ld/emultempl/elf32.em       2004-05-21 23:12:58.000000000 +0100
++++ binutils-2.15/ld/emultempl/elf32.em        2004-05-21 23:12:59.000000000 +0100
+@@ -692,6 +692,8 @@
+             && command_line.rpath == NULL)
+           {
+             lib_path = (const char *) getenv ("LD_RUN_PATH");
++            if ((lib_path) && (strlen (lib_path) == 0))
++                lib_path = NULL;
+             if (gld${EMULATION_NAME}_search_needed (lib_path, &n,
+                                                     force))
+               break;
+@@ -871,6 +873,8 @@
+   rpath = command_line.rpath;
+   if (rpath == NULL)
+     rpath = (const char *) getenv ("LD_RUN_PATH");
++  if ((rpath) && (strlen (rpath) == 0))
++      rpath = NULL;
+   if (! (bfd_elf_size_dynamic_sections
+        (output_bfd, command_line.soname, rpath,
+         command_line.filter_shlib,
diff --git a/openwrt/toolchain/binutils/2.16.1/702-binutils-skip-comments.patch b/openwrt/toolchain/binutils/2.16.1/702-binutils-skip-comments.patch
new file mode 100644 (file)
index 0000000..9ef7a7c
--- /dev/null
@@ -0,0 +1,93 @@
+Retrieved from http://sources.redhat.com/ml/binutils/2004-04/msg00646.html
+Fixes
+localealias.s:544: Error: junk at end of line, first unrecognized character is `,' 
+when building glibc-2.3.2 with gcc-3.4.0 and binutils-2.15.90.0.3
+
+Paths adjusted to match crosstool's patcher.
+
+Message-Id: m3n052qw2g.fsf@whitebox.m5r.de
+From: Andreas Schwab <schwab at suse dot de>
+To: Nathan Sidwell <nathan at codesourcery dot com>
+Cc: Ian Lance Taylor <ian at wasabisystems dot com>, binutils at sources dot redhat dot com
+Date: Fri, 23 Apr 2004 22:27:19 +0200
+Subject: Re: demand_empty_rest_of_line and ignore_rest_of_line
+
+Nathan Sidwell <nathan@codesourcery.com> writes:
+
+> Index: read.c
+> ===================================================================
+> RCS file: /cvs/src/src/gas/read.c,v
+> retrieving revision 1.76
+> diff -c -3 -p -r1.76 read.c
+> *** read.c   12 Mar 2004 17:48:12 -0000      1.76
+> --- read.c   18 Mar 2004 09:56:05 -0000
+> *************** read_a_source_file (char *name)
+> *** 1053,1059 ****
+>   #endif
+>        input_line_pointer--;
+>        /* Report unknown char as ignored.  */
+> !      ignore_rest_of_line ();
+>      }
+>   
+>   #ifdef md_after_pass_hook
+> --- 1053,1059 ----
+>   #endif
+>        input_line_pointer--;
+>        /* Report unknown char as ignored.  */
+> !      demand_empty_rest_of_line ();
+>      }
+>   
+>   #ifdef md_after_pass_hook
+
+This means that the unknown character is no longer ignored, despite the
+comment.  As a side effect a line starting with a line comment character
+not followed by APP in NO_APP mode now triggers an error instead of just a
+warning, breaking builds of glibc on m68k-linux.  Earlier in
+read_a_source_file where #APP is handled there is another comment that
+claims that unknown comments are ignored, when in fact they aren't (only
+the initial line comment character is skipped).
+
+Note that the presence of #APP will mess up the line counters, but
+that appears to be difficult to fix.
+
+Andreas.
+
+2004-04-23  Andreas Schwab  <schwab@suse.de>
+
+       * read.c (read_a_source_file): Ignore unknown text after line
+       comment character.  Fix misleading comment.
+
+--- binutils/gas/read.c.~1.78.~        2004-04-23 08:58:23.000000000 +0200
++++ binutils/gas/read.c        2004-04-23 21:49:01.000000000 +0200
+@@ -950,10 +950,14 @@ read_a_source_file (char *name)
+             unsigned int new_length;
+             char *tmp_buf = 0;
+-            bump_line_counters ();
+             s = input_line_pointer;
+             if (strncmp (s, "APP\n", 4))
+-              continue;       /* We ignore it */
++              {
++                /* We ignore it */
++                ignore_rest_of_line ();
++                continue;
++              }
++            bump_line_counters ();
+             s += 4;
+             sb_new (&sbuf);
+@@ -1052,7 +1056,7 @@ read_a_source_file (char *name)
+           continue;
+ #endif
+         input_line_pointer--;
+-        /* Report unknown char as ignored.  */
++        /* Report unknown char as error.  */
+         demand_empty_rest_of_line ();
+       }
+
+-- 
+Andreas Schwab, SuSE Labs, schwab@suse.de
+SuSE Linux AG, Maxfeldstra&#xC3;e 5, 90409 N&#xC3;rnberg, Germany
+Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
+"And now for something completely different."