Your message dated Tue, 12 May 2009 16:02:39 +0000
with message-id <e1m3urd-0007iw...@ries.debian.org>
and subject line Bug#505724: fixed in soundkonverter 0.3.8-3
has caused the Debian Bug report #505724,
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 ow...@bugs.debian.org
immediately.)


-- 
505724: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505724
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: soundkonverter
Version: 0.3.8-2
User: debian-...@lists.debian.org
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 soundkonverter_0.3.8-2 on em64t by sbuild/amd64 0.53
...
> mkdir .libs
>  g++ -DHAVE_CONFIG_H -I. 
> -I/build/tbm/soundkonverter-0.3.8/./src/metadata/audible -I../../.. 
> -I/usr/include/kde -I/usr/share/qt3/include -I. -I/usr/include/taglib 
> -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi 
> -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts 
> -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -g -O2 -g -Wall -O2 
> -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor 
> -fno-exceptions -fno-check-new -fno-common -c 
> /build/tbm/soundkonverter-0.3.8/./src/metadata/audible/audibleproperties.cpp  
> -fPIC -DPIC -o .libs/audibleproperties.o
> /build/tbm/soundkonverter-0.3.8/./src/metadata/audible/audibleproperties.cpp: 
> In member function 'void 
> TagLib::Audible::Properties::readAudibleProperties(FILE*, int)':
> /build/tbm/soundkonverter-0.3.8/./src/metadata/audible/audibleproperties.cpp:77:
>  error: 'fseek' was not declared in this scope
> /build/tbm/soundkonverter-0.3.8/./src/metadata/audible/audibleproperties.cpp:78:
>  error: 'fread' was not declared in this scope
> make[6]: *** [audibleproperties.lo] Error 1
> make[6]: Leaving directory 
> `/build/tbm/soundkonverter-0.3.8/obj-x86_64-linux-gnu/src/metadata/audible'

--- src/metadata/wav/wavproperties.cpp~ 2008-11-14 17:00:40.000000000 +0000
+++ src/metadata/wav/wavproperties.cpp  2008-11-14 17:00:49.000000000 +0000
@@ -29,6 +29,7 @@
 
 #include "wavfile.h"
 
+#include <stdio.h>
 #include <netinet/in.h> // ntohl
 
 using namespace TagLib;
--- src/metadata/wav/wavfile.cpp~       2008-11-14 17:00:54.000000000 +0000
+++ src/metadata/wav/wavfile.cpp        2008-11-14 17:01:03.000000000 +0000
@@ -29,6 +29,8 @@
 #include <taglib/audioproperties.h>
 #include <taglib/tag.h>
 
+#include <stdio.h>
+
 namespace TagLib {
 
////////////////////////////////////////////////////////////////////////////////
 // public members
--- src/metadata/wav/wavfiletyperesolver.cpp~   2008-11-14 17:04:01.000000000 
+0000
+++ src/metadata/wav/wavfiletyperesolver.cpp    2008-11-14 17:04:08.000000000 
+0000
@@ -22,6 +22,7 @@
 #include "wavfiletyperesolver.h"
 #include "wavfile.h"
 
+#include <stdio.h>
 #include <string.h>
 
 TagLib::File *WavFileTypeResolver::createFile(const char *fileName,
--- src/metadata/audible/audibleproperties.cpp~ 2008-11-14 16:57:02.000000000 
+0000
+++ src/metadata/audible/audibleproperties.cpp  2008-11-14 16:57:07.000000000 
+0000
@@ -29,6 +29,7 @@
 
 #include "taglib_audiblefile.h"
 
+#include <cstdio>
 #include <netinet/in.h> // ntohl
 
 using namespace TagLib;
--- src/metadata/audible/audibletag.cpp~        2008-11-14 16:57:33.000000000 
+0000
+++ src/metadata/audible/audibletag.cpp 2008-11-14 16:57:42.000000000 +0000
@@ -28,6 +28,7 @@
 #include <taglib/tag.h>
 
 #include <netinet/in.h> // ntohl
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
--- src/metadata/audible/taglib_audiblefile.cpp~        2008-11-14 
16:57:50.000000000 +0000
+++ src/metadata/audible/taglib_audiblefile.cpp 2008-11-14 16:57:56.000000000 
+0000
@@ -29,6 +29,8 @@
 #include <taglib/tfile.h>
 #include <taglib/audioproperties.h>
 
+#include <cstdio>
+
 namespace TagLib {
 
////////////////////////////////////////////////////////////////////////////////
 // public members
--- src/metadata/audible/taglib_audiblefiletyperesolver.cpp~    2008-11-14 
16:58:03.000000000 +0000
+++ src/metadata/audible/taglib_audiblefiletyperesolver.cpp     2008-11-14 
16:58:09.000000000 +0000
@@ -22,6 +22,7 @@
 #include "taglib_audiblefiletyperesolver.h"
 #include "taglib_audiblefile.h"
 
+#include <stdio.h>
 #include <string.h>
 
 TagLib::File *AudibleFileTypeResolver::createFile(const char *fileName,

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



--- End Message ---
--- Begin Message ---
Source: soundkonverter
Source-Version: 0.3.8-3

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

soundkonverter_0.3.8-3.diff.gz
  to pool/main/s/soundkonverter/soundkonverter_0.3.8-3.diff.gz
soundkonverter_0.3.8-3.dsc
  to pool/main/s/soundkonverter/soundkonverter_0.3.8-3.dsc
soundkonverter_0.3.8-3_amd64.deb
  to pool/main/s/soundkonverter/soundkonverter_0.3.8-3_amd64.deb
soundkonverter_0.3.8-3_i386.deb
  to pool/main/s/soundkonverter/soundkonverter_0.3.8-3_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 505...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Fathi Boudra <f...@debian.org> (supplier of updated soundkonverter 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 ftpmas...@debian.org)


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

Format: 1.8
Date: Tue, 12 May 2009 16:04:07 +0200
Source: soundkonverter
Binary: soundkonverter
Architecture: amd64 i386 source 
Version: 0.3.8-3
Distribution: unstable
Urgency: low
Maintainer: Fathi Boudra <f...@debian.org>
Changed-By: Fathi Boudra <f...@debian.org>
Closes: 505724 528350
Description:
 soundkonverter - audio converter frontend for KDE
Changes:
 soundkonverter (0.3.8-3) unstable; urgency=low
 .
   * Drop soundkonverter-amarok since it doesn't work with amarok 2.
     (Closes: #528350)
   * Add patch to fix ftbfs with gcc 4.4. Thanks to Martin Michlmayr.
     (Closes: #505724)
   * Bump Standards-Version from 3.8.0 to 3.8.1 (no changes needed).
Checksums-Sha1: 
 0e4780d9015b3d187e95e38595e61d11b6236d22 555954 soundkonverter_0.3.8-3_i386.deb
 93fe416829c052fd1f65f18a9763b77974726434 80339 soundkonverter_0.3.8-3.diff.gz
 96eda1018dbfa01c48e982c4d3e76cc5ec053e57 582938 
soundkonverter_0.3.8-3_amd64.deb
 84379fcbdcb28d149b2de68e5f4e0eb9897770cb 1395 soundkonverter_0.3.8-3.dsc
Checksums-Sha256: 
 07ac3d19c2b1e4a1d6aa5092d5d5c1ab5fa460cd4cd4b8bd269c5207d0a13b16 80339 
soundkonverter_0.3.8-3.diff.gz
 1fd81fa3a2282c5e5b33390a9d56b5529f46a05808b5a1d0db3048eb69a432ec 582938 
soundkonverter_0.3.8-3_amd64.deb
 89a9483ee86449297127c766c57a99bdfe9dd977b04a19661aa5bea7f141b2aa 1395 
soundkonverter_0.3.8-3.dsc
 76ccef9d44dc44ebd7e777d362290be2ceac967624ea733398cfca27a71e86d2 555954 
soundkonverter_0.3.8-3_i386.deb
Files: 
 95baf837518ea4daa3475015048aa70f 80339 kde optional 
soundkonverter_0.3.8-3.diff.gz
 cd4a3d4a5fda13bb1acd763b7db091e7 582938 kde optional 
soundkonverter_0.3.8-3_amd64.deb
 ce13934a6e5c40bfdcff2a3cd01d1e90 555954 kde optional 
soundkonverter_0.3.8-3_i386.deb
 11c5c25f433b569b2d1ac113c6fad8b5 1395 kde optional soundkonverter_0.3.8-3.dsc

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

iJwEAQECAAYFAkoJmmwACgkQjPU19mqlcvfPdQP/S5UAafFeRIVKzumYxoPsHSLG
fJ9USdFjwDU1tDTbFIquNF6rlOeLdC0EO4eCp8HFDhpvIVoXA0BFqlfNrFJxh9pD
nOK5/TrMYvzW2bhKJiiaCWSDA6qGF+7ZTQRIyGZzZen6xyPPHqgkgRO3oYORlxPN
ktVHpgaDntFjTzeWrRw=
=jrGr
-----END PGP SIGNATURE-----



--- End Message ---
_______________________________________________
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras

Reply via email to