Hi, The attached file is the diff for my wfnetobjs 0.2.2-2.2 NMU. The associated changelog entry is:
wfnetobjs (0.2.2-2.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix FTBFS with GCC 4.3 (Closes: #474857)
* Use ${binary:Version} instead of ${Source-Version}.
Regards,
--
Chris Lamb, UK [EMAIL PROTECTED]
GPG: 0x634F9A20
diff -Nru wfnetobjs-0.2.2/debian/changelog wfnetobjs-0.2.2/debian/changelog
--- wfnetobjs-0.2.2/debian/changelog 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/debian/changelog 2008-04-12 02:56:16.000000000 +0100
@@ -1,3 +1,11 @@
+wfnetobjs (0.2.2-2.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS with GCC 4.3 (Closes: #474857)
+ * Use ${binary:Version} instead of ${Source-Version}.
+
+ -- Chris Lamb <[EMAIL PROTECTED]> Sat, 12 Apr 2008 02:52:49 +0100
+
wfnetobjs (0.2.2-2.1) unstable; urgency=low
* Non-maintainer upload.
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/debian/control
/tmp/izd10gzk1c/wfnetobjs-0.2.2/debian/control
--- wfnetobjs-0.2.2/debian/control 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/debian/control 2008-04-12 02:56:16.000000000 +0100
@@ -2,14 +2,14 @@
Priority: optional
Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]>
Build-Depends: debhelper (>> 3.0.0)
-Standards-Version: 3.6.0
+Standards-Version: 3.7.3
Package: libwfnetobjs0-dev
Provides: libwfnetobjs-dev
Conflicts: libwfnetobjs-dev
Section: devel
Architecture: any
-Depends: libwfnetobjs0c2 (= ${Source-Version})
+Depends: libwfnetobjs0c2 (= ${binary:Version})
Description: The WallFire modular firewalling application library -
development files
The library libwfnetobjs, handles network objects (hosts, ports, etc.) of the
WallFire project.
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/host.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/host.cc
--- wfnetobjs-0.2.2/netobjs/host.cc 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/host.cc 2008-04-12 02:56:16.000000000 +0100
@@ -26,6 +26,7 @@
#endif
#include <sstream>
+#include <cstring>
#include <algorithm>
#include <stdio.h>
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/iface.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/iface.cc
--- wfnetobjs-0.2.2/netobjs/iface.cc 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/iface.cc 2008-04-12 02:56:16.000000000 +0100
@@ -26,6 +26,7 @@
#endif
#include <stdio.h>
+#include <cstring>
/* <<< guess */
#include <unistd.h> /* for close() */
#include <netinet/in.h> /* for IPPROTO_IP */
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/ipaddr.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/ipaddr.cc
--- wfnetobjs-0.2.2/netobjs/ipaddr.cc 2004-05-19 21:12:45.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/ipaddr.cc 2008-04-12 02:56:16.000000000 +0100
@@ -30,6 +30,7 @@
#include <netinet/in.h> /* for struct in_addr on FreeBSD */
#include <netdb.h> /* for gethostbyaddr() */
#include <sys/socket.h> /* for AF_INET on NetBSD */
+#include <cstring>
#include "wfipaddr.h"
#include "wfindent.h"
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/macaddr.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/macaddr.cc
--- wfnetobjs-0.2.2/netobjs/macaddr.cc 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/macaddr.cc 2008-04-12 02:56:16.000000000 +0100
@@ -26,6 +26,7 @@
#endif
#include <stdio.h> /* for sprintf */
+#include <cstring>
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
//#include <net/if_ether.h> /* for ether_aton */
#endif
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/network.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/network.cc
--- wfnetobjs-0.2.2/netobjs/network.cc 2004-04-10 14:29:21.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/network.cc 2008-04-12 02:56:16.000000000 +0100
@@ -29,6 +29,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <cstring>
#include <arpa/inet.h>
#include "wfnetwork.h"
diff -Nru /tmp/wQaMtIrcG8/wfnetobjs-0.2.2/netobjs/route.cc
/tmp/izd10gzk1c/wfnetobjs-0.2.2/netobjs/route.cc
--- wfnetobjs-0.2.2/netobjs/route.cc 2008-04-12 02:56:16.000000000 +0100
+++ wfnetobjs-0.2.2/netobjs/route.cc 2008-04-12 02:56:16.000000000 +0100
@@ -23,6 +23,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <cstring>
#include "wfroute.h"
#include "defs.h"
signature.asc
Description: PGP signature

