Hi, The attached file is the diff for my wflogs 0.9.8-6.2 NMU. The changelog entry contains:
wflogs (0.9.8-6.2) unstable; urgency=medium * Non-maintainer upload. * Fix FTBFS with GCC 4.3 (Closes: #474849) * Add Build-Depends on Bison as logs/filter_y.yy is modified. * Bump Standards-Version to 3.7.3. Regards, -- Chris Lamb, UK [EMAIL PROTECTED] GPG: 0x634F9A20
diff -Nru wflogs-0.9.8/debian/changelog wflogs-0.9.8/debian/changelog --- wflogs-0.9.8/debian/changelog 2008-04-12 01:39:11.000000000 +0100 +++ wflogs-0.9.8/debian/changelog 2008-04-12 01:39:11.000000000 +0100 @@ -1,3 +1,12 @@ +wflogs (0.9.8-6.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with GCC 4.3 (Closes: #474849) + * Add Build-Depends on Bison as logs/filter_y.yy is modified. + * Bump Standards-Version to 3.7.3. + + -- Chris Lamb <[EMAIL PROTECTED]> Sat, 12 Apr 2008 01:35:47 +0100 + wflogs (0.9.8-6.1) unstable; urgency=medium * Non-maintainer upload. diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/debian/control /tmp/Q2245H0QkA/wflogs-0.9.8/debian/control --- wflogs-0.9.8/debian/control 2008-04-12 01:39:11.000000000 +0100 +++ wflogs-0.9.8/debian/control 2008-04-12 01:39:11.000000000 +0100 @@ -2,8 +2,8 @@ Section: net Priority: optional Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.1.16), libwfnetobjs0-dev (>=0.1.8-1), libadns1-dev, libreadline5-dev, automake1.4, po-debconf -Standards-Version: 3.6.0 +Build-Depends: debhelper (>= 4.1.16), libwfnetobjs0-dev (>=0.1.8-1), libadns1-dev, libreadline5-dev, automake1.4, po-debconf, bison +Standards-Version: 3.7.3 Package: wflogs Architecture: any diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/input_modules/common.cc /tmp/Q2245H0QkA/wflogs-0.9.8/input_modules/common.cc --- wflogs-0.9.8/input_modules/common.cc 2004-05-23 19:26:18.000000000 +0100 +++ wflogs-0.9.8/input_modules/common.cc 2008-04-12 01:39:11.000000000 +0100 @@ -26,6 +26,7 @@ #endif #include <stdio.h> +#include <cstring> #include <arpa/inet.h> #include "common.h" diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/logs/filter.cc /tmp/Q2245H0QkA/wflogs-0.9.8/logs/filter.cc --- wflogs-0.9.8/logs/filter.cc 2004-03-29 17:14:56.000000000 +0100 +++ wflogs-0.9.8/logs/filter.cc 2008-04-12 01:39:11.000000000 +0100 @@ -28,6 +28,8 @@ #include <sys/types.h> /* for regex.h */ #include <regex.h> +#include <cstring> + extern "C" time_t get_date(const char *p, const time_t *now); #include "filter.h" diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/logs/filter_y.yy /tmp/Q2245H0QkA/wflogs-0.9.8/logs/filter_y.yy --- wflogs-0.9.8/logs/filter_y.yy 2004-05-18 23:30:54.000000000 +0100 +++ wflogs-0.9.8/logs/filter_y.yy 2008-04-12 01:39:11.000000000 +0100 @@ -31,6 +31,7 @@ #include <stdlib.h> #include <stdio.h> #include <stdarg.h> +#include <cstring> #include "wfipaddr.h" #include "wfnetwork.h" diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/logs/wflogs_obfuscator.cc /tmp/Q2245H0QkA/wflogs-0.9.8/logs/wflogs_obfuscator.cc --- wflogs-0.9.8/logs/wflogs_obfuscator.cc 2008-04-12 01:39:11.000000000 +0100 +++ wflogs-0.9.8/logs/wflogs_obfuscator.cc 2008-04-12 01:39:11.000000000 +0100 @@ -26,6 +26,7 @@ #endif #include <cstdlib> +#include <cstring> #include <sstream> #include <stdio.h> diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/logs/wf_sort.cc /tmp/Q2245H0QkA/wflogs-0.9.8/logs/wf_sort.cc --- wflogs-0.9.8/logs/wf_sort.cc 2003-03-20 20:25:41.000000000 +0000 +++ wflogs-0.9.8/logs/wf_sort.cc 2008-04-12 01:39:11.000000000 +0100 @@ -25,6 +25,8 @@ #include <config.h> #endif +#include <cstring> + #include "wf_sort.h" #include "defs.h" diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/output_modules/preresolv.cc /tmp/Q2245H0QkA/wflogs-0.9.8/output_modules/preresolv.cc --- wflogs-0.9.8/output_modules/preresolv.cc 2004-05-19 21:10:47.000000000 +0100 +++ wflogs-0.9.8/output_modules/preresolv.cc 2008-04-12 01:39:11.000000000 +0100 @@ -32,6 +32,7 @@ #include <stdio.h> /* for stderr */ #include <arpa/inet.h> #include <inttypes.h> +#include <cstring> #include <errno.h> /* for ESRCH */ #include "preresolv.h" diff -Nru /tmp/GymJz2t1KN/wflogs-0.9.8/output_modules/whois.cc /tmp/Q2245H0QkA/wflogs-0.9.8/output_modules/whois.cc --- wflogs-0.9.8/output_modules/whois.cc 2004-05-18 23:59:08.000000000 +0100 +++ wflogs-0.9.8/output_modules/whois.cc 2008-04-12 01:39:11.000000000 +0100 @@ -28,6 +28,7 @@ #include <stdio.h> // for snprintf (suppress) RV@@8 #include <unistd.h> #include <signal.h> +#include <cstring> #include <stdlib.h> // for malloc (suppress) RV@@8 #include <netdb.h> #include <netinet/in.h> /* needed for *BSD */
signature.asc
Description: PGP signature