Your message dated Sat, 15 Mar 2008 18:32:08 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417765: fixed in wflogs 0.9.8-6.1
has caused the Debian Bug report #417765,
regarding FTBFS with GCC 4.3: missing #includes
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
417765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417765
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: wflogs
Version: 0.9.8-5.4
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in ~3 weeks.)

> Automatic build of wflogs_0.9.8-5.4 on coconut0 by sbuild/ia64 0.49
...
> ia64-linux-gnu-g++ -DLOCALEDIR=\"/usr/share/locale\" -DHAVE_CONFIG_H -I.. 
> -I../lib -I/usr/include/wallfire -I/usr/include/wallfire/../rvlog    -O2 
> -Wall -c output_sort.cc
> ia64-linux-gnu-g++ -DLOCALEDIR=\"/usr/share/locale\" -DHAVE_CONFIG_H -I.. 
> -I../lib -I/usr/include/wallfire -I/usr/include/wallfire/../rvlog    -O2 
> -Wall -c wflogs_filter.cc
> ia64-linux-gnu-g++ -DLOCALEDIR=\"/usr/share/locale\" -DHAVE_CONFIG_H -I.. 
> -I../lib -I/usr/include/wallfire -I/usr/include/wallfire/../rvlog    -O2 
> -Wall -c wflogs_obfuscator.cc
> wflogs_obfuscator.cc: In constructor 'wflogs_obfuscator::wflogs_obfuscator()':
> wflogs_obfuscator.cc:41: error: 'srandom' was not declared in this scope
> wflogs_obfuscator.cc:42: error: 'random' was not declared in this scope
> wflogs_obfuscator.cc: In member function 'bool wflogs_obfuscator::set(const 
> std::string&)':
> wflogs_obfuscator.cc:91: warning: comparison is always true due to limited 
> range of data type
> wflogs_obfuscator.cc: In member function 'unsigned int 
> wflogs_obfuscator::randomip(const wf_ipaddr&)':
> wflogs_obfuscator.cc:121: error: 'random' was not declared in this scope
> make[3]: *** [wflogs_obfuscator.o] Error 1

--- config/wfconfig.h~  2007-04-04 14:11:09.000000000 +0000
+++ config/wfconfig.h   2007-04-04 14:11:17.000000000 +0000
@@ -22,6 +22,7 @@
 #ifndef _WF_CONFIG_H
 #define _WF_CONFIG_H
 
+#include <algorithm>
 #include <iostream>
 #include <string>
 #include <map>
--- logs/wflogs_obfuscator.cc~  2007-04-04 14:08:53.000000000 +0000
+++ logs/wflogs_obfuscator.cc   2007-04-04 14:08:59.000000000 +0000
@@ -25,6 +25,7 @@
 #include <config.h>
 #endif
 
+#include <cstdlib>
 #include <sstream>
 #include <stdio.h>
 
--- input_modules/module.cc~    2007-04-04 14:10:02.000000000 +0000
+++ input_modules/module.cc     2007-04-04 14:10:09.000000000 +0000
@@ -26,6 +26,7 @@
 #endif
 
 #include <stdio.h>
+#include <stdlib.h>
 #include <unistd.h> /* for getcwd() */
 
 #ifdef USE_DYNAMIC
--- output_modules/module.cc~   2007-04-04 14:10:55.000000000 +0000
+++ output_modules/module.cc    2007-04-04 14:11:02.000000000 +0000
@@ -26,6 +26,7 @@
 #endif
 
 #include <stdio.h>
+#include <stdlib.h>
 #include <unistd.h> /* for getcwd() */
 
 #ifdef USE_DYNAMIC

-- 
Martin Michlmayr
http://www.cyrius.com/


--- End Message ---
--- Begin Message ---
Source: wflogs
Source-Version: 0.9.8-6.1

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

wflogs_0.9.8-6.1.diff.gz
  to pool/main/w/wflogs/wflogs_0.9.8-6.1.diff.gz
wflogs_0.9.8-6.1.dsc
  to pool/main/w/wflogs/wflogs_0.9.8-6.1.dsc
wflogs_0.9.8-6.1_i386.deb
  to pool/main/w/wflogs/wflogs_0.9.8-6.1_i386.deb



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.
Luk Claes <[EMAIL PROTECTED]> (supplier of updated wflogs 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: Sat, 15 Mar 2008 18:23:13 +0000
Source: wflogs
Binary: wflogs
Architecture: source i386
Version: 0.9.8-6.1
Distribution: unstable
Urgency: medium
Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]>
Changed-By: Luk Claes <[EMAIL PROTECTED]>
Description: 
 wflogs     - The modular firewall log analyzer of the WallFire project
Closes: 417765
Changes: 
 wflogs (0.9.8-6.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix FTBFS with GCC 4.3 (Closes: #417765).
Files: 
 281974d6f8ba91f9b5f2957de404a7e6 659 net optional wflogs_0.9.8-6.1.dsc
 324031828f21ff51ac3a70902e83b49d 53094 net optional wflogs_0.9.8-6.1.diff.gz
 39e081e1d7c8c6294d34c1dbcbc24131 214756 net optional wflogs_0.9.8-6.1_i386.deb

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

iD8DBQFH3BSr5UTeB5t8Mo0RAoviAJ9SKqfyJuYNtcELz+S0jyvWYv6NWwCgrt/D
5/ITTshutOQIiej6Tbd83XQ=
=Gief
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to