Your message dated Sat, 6 Dec 2008 23:22:50 +0900
with message-id <[EMAIL PROTECTED]>
and subject line fixed in jd 1:2.0.3-081124-1 (FTBFS with GCC 4.4: missing
#include)
has caused the Debian Bug report #505388,
regarding FTBFS with GCC 4.4: missing #include
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.)
--
505388: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505388
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: jd
Version: 1:2.0.2-080919-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch
Your package fails to build with the upcoming GCC 4.4. Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.
GCC 4.4 cleaned up some more C++ headers. You always have to #include
headers directly and cannot rely for things to be included indirectly.
You can reproduce this problem with gcc-snapshot from unstable.
> Automatic build of jd_1:2.0.2-080919-2 on em64t by sbuild/amd64 0.53
...
> make[4]: Entering directory `/build/tbm/jd-2.0.2-080919/src/jdlib'
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src -D_REENTRANT
> -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include
> -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include
> -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include
> -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0
> -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include
> -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
> -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0
> -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2
> -I/usr/include/directfb -I/usr/include/libpng12 -I/usr/include/pixman-1
> -I/usr/include/atk-1.0 -g -O2 -ggdb -Wall -DGTKMMVER=2120 -DUSE_XSMP -MT
> miscutil.o -MD -MP -MF .deps/miscutil.Tpo -c -o miscutil.o miscutil.cpp
> miscutil.cpp: In function 'std::string MISC::url_encode(const char*, size_t)':
> miscutil.cpp:953: error: 'snprintf' was not declared in this scope
> make[4]: *** [miscutil.o] Error 1
> make[4]: Leaving directory `/build/tbm/jd-2.0.2-080919/src/jdlib'
--- src/jdlib/miscutil.cpp~ 2008-11-11 22:29:40.000000000 +0000
+++ src/jdlib/miscutil.cpp 2008-11-11 22:29:46.000000000 +0000
@@ -12,6 +12,7 @@
#include <sstream>
#include <cstring>
+#include <cstdio>
#include <cstdlib>
--- src/jdlib/misctime.cpp~ 2008-11-11 22:30:16.000000000 +0000
+++ src/jdlib/misctime.cpp 2008-11-11 22:30:22.000000000 +0000
@@ -6,6 +6,7 @@
#include "misctime.h"
#include <sstream>
+#include <cstdio>
#include <cstring>
#include <time.h>
#include <sys/time.h>
--- src/jdlib/jdiconv.cpp~ 2008-11-11 22:30:56.000000000 +0000
+++ src/jdlib/jdiconv.cpp 2008-11-11 22:31:03.000000000 +0000
@@ -12,6 +12,7 @@
#include <errno.h>
#include <cstring>
+#include <cstdio>
#include <cstdlib>
using namespace JDLIB;
--- src/jdlib/confloader.cpp~ 2008-11-11 22:31:21.000000000 +0000
+++ src/jdlib/confloader.cpp 2008-11-11 22:31:27.000000000 +0000
@@ -7,6 +7,7 @@
#include "miscutil.h"
#include "cache.h"
+#include <cstdio>
#include <cstdlib>
using namespace JDLIB;
--- src/cache.h~ 2008-11-11 22:32:25.000000000 +0000
+++ src/cache.h 2008-11-11 22:32:30.000000000 +0000
@@ -5,6 +5,7 @@
#ifndef _CACHE_H
#define _CACHE_H
+#include <stdint.h>
#include <string>
#include <list>
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
This bug is fixed by upstream.
--
Regards,
Hideki Yamane henrich @ debian.or.jp/iijmio-mail.jp
http://wiki.debian.org/HidekiYamane
--- End Message ---