Your message dated Wed, 26 Dec 2007 11:17:09 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#416255: fixed in wfnetobjs 0.2.2-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: wfnetobjs
Version: 0.2.2-1.1
Severity: important
Tags: patch

Hi,

currently your package FTBFS on GNU/kFreeBSD because it lacks support
for this OS. Please find attached a patch to make it build successfully.

Cheers,

-- 
Cyril Brulebois
--- wfnetobjs-0.2.2/netobjs/host.cc	2007-03-26 03:33:05.329735000 +0200
+++ wfnetobjs-0.2.2/netobjs/host.cc	2007-03-26 03:33:31.000000000 +0200
@@ -299,7 +299,7 @@
 /* We consider that no field is already defined, except name. */
 bool
 wf_host::ifaces_guess(bool skip_useless) {
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
   struct ifaddrs *ifap, *ifa;
   if (getifaddrs(&ifap) < 0) {
     perror("getifaddrs");
--- wfnetobjs-0.2.2/netobjs/iface.cc	2007-03-26 03:31:15.791777000 +0200
+++ wfnetobjs-0.2.2/netobjs/iface.cc	2007-03-26 03:31:47.000000000 +0200
@@ -31,7 +31,7 @@
 #include <netinet/in.h> /* for IPPROTO_IP */
 #include <sys/ioctl.h>
 #include <errno.h>
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/socket.h>
 #include <net/if_dl.h> /* for struct sockaddr_dl */
 #include <net/if_types.h> /* for IFT_ETHER */
@@ -58,7 +58,7 @@
 
 wf_iface::~wf_iface() {}
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 bool
 wf_iface::guess(struct ifaddrs* ifa, bool skip_useless) {
   name = ifa->ifa_name;
@@ -154,7 +154,7 @@
 }
 #endif
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 bool
 wf_iface::guess(const string& ifacename, bool skip_useless) {
   struct ifaddrs *ifap, *ifa;
--- wfnetobjs-0.2.2/netobjs/listeners.cc	2007-03-26 03:33:05.482618000 +0200
+++ wfnetobjs-0.2.2/netobjs/listeners.cc	2007-03-26 03:33:55.000000000 +0200
@@ -28,7 +28,7 @@
 #include <iostream>
 #include <iterator>
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/types.h> /* <netinet/in.h> needs this */
 #endif
 #include <netinet/in.h> /* for IPPROTO_* */
@@ -54,7 +54,7 @@
 wf_listeners::probe_local(int proto) {
 #ifdef linux
   return probe_local_linux(proto);
-#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
   return probe_local_bsd(proto);
 #else
   return false;
--- wfnetobjs-0.2.2/netobjs/listeners_bsd.cc	2007-03-26 03:33:05.565376000 +0200
+++ wfnetobjs-0.2.2/netobjs/listeners_bsd.cc	2007-03-26 03:34:03.000000000 +0200
@@ -25,7 +25,7 @@
 #include <config.h>
 #endif
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 
 #include "wflisteners.h"
 #include "defs.h"
--- wfnetobjs-0.2.2/netobjs/macaddr.cc	2007-03-26 03:33:05.639985000 +0200
+++ wfnetobjs-0.2.2/netobjs/macaddr.cc	2007-03-26 03:38:57.000000000 +0200
@@ -29,7 +29,7 @@
 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
 //#include <net/if_ether.h> /* for ether_aton */
 #endif
-#ifdef linux
+#if defined(linux) || defined(__FreeBSD_kernel__)
 #include <netinet/ether.h> /* for ether_aton */
 #endif
 
--- wfnetobjs-0.2.2/netobjs/port.cc	2007-03-26 03:33:05.713639000 +0200
+++ wfnetobjs-0.2.2/netobjs/port.cc	2007-03-26 03:34:30.000000000 +0200
@@ -29,7 +29,7 @@
 #include <sstream>
 
 #include <stdlib.h>
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/param.h> /* for htons() */
 #else
 #include <netinet/in.h> /* for htons() */
--- wfnetobjs-0.2.2/netobjs/port_range.cc	2007-03-26 03:33:05.787718000 +0200
+++ wfnetobjs-0.2.2/netobjs/port_range.cc	2007-03-26 03:34:38.000000000 +0200
@@ -29,7 +29,7 @@
 #include <sstream>
 
 #include <stdlib.h>
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/param.h> /* for htons() */
 #else
 #include <netinet/in.h> /* for htons() */
--- wfnetobjs-0.2.2/netobjs/wfiface.h	2007-03-26 03:32:09.492819000 +0200
+++ wfnetobjs-0.2.2/netobjs/wfiface.h	2007-03-26 03:32:32.000000000 +0200
@@ -24,7 +24,7 @@
 
 #include <iostream>
 #include <string>
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <ifaddrs.h> /* for struct ifaddrs */
@@ -58,7 +58,7 @@
   virtual ~wf_iface();
   // wf_iface(const wf_iface& iface);
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
   bool guess(struct ifaddrs* ifa, bool skip_useless = false);
 #else
   bool guess(struct ifreq* ifr, int sock, bool skip_useless = false);
--- wfnetobjs-0.2.2/netobjs/wflisteners.h	2007-03-26 03:33:05.866913000 +0200
+++ wfnetobjs-0.2.2/netobjs/wflisteners.h	2007-03-26 03:34:55.000000000 +0200
@@ -50,7 +50,7 @@
  private:
 #ifdef linux
   bool probe_local_linux(int proto);
-#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
   bool probe_local_bsd(int proto);
 #endif
 };
--- wfnetobjs-0.2.2/netobjs/wfmacaddr.h	2007-03-26 03:33:05.941605000 +0200
+++ wfnetobjs-0.2.2/netobjs/wfmacaddr.h	2007-03-26 03:35:07.000000000 +0200
@@ -25,7 +25,7 @@
 #include <iostream>
 #include <string>
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 /* Oh my!! */
 #include <sys/types.h> /* for u_char, <sys/socket.h> needs this on FreeBSD */
 #include <sys/socket.h> /* for struct sockaddr, <net/if.h> needs this */
--- wfnetobjs-0.2.2/netobjs/wfprotocol.h	2007-03-26 03:33:06.015342000 +0200
+++ wfnetobjs-0.2.2/netobjs/wfprotocol.h	2007-03-26 03:35:15.000000000 +0200
@@ -26,7 +26,7 @@
 #include <list>
 #include <string>
 
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__)
 #include <sys/types.h> /* <netinet/in.h> needs this */
 #endif
 #include <netinet/in.h> /* for IPPROTO_* */

--- End Message ---
--- Begin Message ---
Source: wfnetobjs
Source-Version: 0.2.2-2

We believe that the bug you reported is fixed in the latest version of
wfnetobjs, which is due to be installed in the Debian FTP archive:

libwfnetobjs0-dev_0.2.2-2_i386.deb
  to pool/main/w/wfnetobjs/libwfnetobjs0-dev_0.2.2-2_i386.deb
libwfnetobjs0c2_0.2.2-2_i386.deb
  to pool/main/w/wfnetobjs/libwfnetobjs0c2_0.2.2-2_i386.deb
wfnetobjs_0.2.2-2.diff.gz
  to pool/main/w/wfnetobjs/wfnetobjs_0.2.2-2.diff.gz
wfnetobjs_0.2.2-2.dsc
  to pool/main/w/wfnetobjs/wfnetobjs_0.2.2-2.dsc



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jean-Michel Kelbert <[EMAIL PROTECTED]> (supplier of updated wfnetobjs package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 26 Dec 2007 11:40:22 +0100
Source: wfnetobjs
Binary: libwfnetobjs0c2 libwfnetobjs0-dev
Architecture: source i386
Version: 0.2.2-2
Distribution: unstable
Urgency: low
Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]>
Changed-By: Jean-Michel Kelbert <[EMAIL PROTECTED]>
Description: 
 libwfnetobjs0-dev - The WallFire modular firewalling application library - 
developmen
 libwfnetobjs0c2 - The WallFire modular firewalling application library - 
runtime fi
Closes: 416255 417754
Changes: 
 wfnetobjs (0.2.2-2) unstable; urgency=low
 .
   * Apply a patch to compile on GNU/kFreeBSD
   (closes: #416255)
   * Apply a patch to build with GCC 4.3
   (closes: #417754)
Files: 
 e2449874bdae53b6a5162f84c738999a 602 - optional wfnetobjs_0.2.2-2.dsc
 389de0d389b83f13f7fda3a63793a3d2 18083 - optional wfnetobjs_0.2.2-2.diff.gz
 7f2b846985b8683fd1d1c4d0791ea25e 219180 devel optional 
libwfnetobjs0-dev_0.2.2-2_i386.deb
 ebd55524defbe9688f1f472a4ce454e8 166122 libs optional 
libwfnetobjs0c2_0.2.2-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHcjCoZA5kLi8vDN4RArE9AJ9bZyRXujGuGeQyjifn/mEsXhrO2QCeMH6/
1NXwLFJbxfMhiiShLHb3Aj8=
=4jaj
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to