Your message dated Tue, 30 May 2006 09:17:12 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#358206: fixed in djvulibre 3.5.17-1 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: djvulibre Version: 3.5.16-2 Severity: important Your package fails to build with G++ 4.1. I'm filing this bug as important for now, but when 4.1 will be the default compiler in unstable (probably in a few weeks) I'll upgrade this to serious. > Automatic build of djvulibre_3.5.16-2 on bigsur by sbuild/mips 1.106 ... > mips-linux-gnu-g++ -DHAVE_CONFIG_H -I.. -I. -Wall -Wno-non-virtual-dtor > -DNDEBUG -O3 -pthread -DTHREADMODEL=POSIXTHREADS -c GOS.cpp -fPIC -DPIC -o > .libs/GOS.o > GURL.h:281: error: extra qualification 'DJVU::GURL::' on member 'operator==' > GURL.h:284: error: extra qualification 'DJVU::GURL::' on member 'operator!=' > make[2]: *** [GOS.lo] Error 1 This is easy to fix: --- ./libdjvu/GURL.h~ 2006-03-21 19:05:06.000000000 +0000 +++ ./libdjvu/GURL.h 2006-03-21 19:05:15.000000000 +0000 @@ -278,10 +278,10 @@ //@} /// Returns TRUE if #gurl1# and #gurl2# are the same - bool GURL::operator==(const GURL & gurl2) const; + bool operator==(const GURL & gurl2) const; /// Returns TRUE if #gurl1# and #gurl2# are different - bool GURL::operator!=(const GURL & gurl2) const; + bool operator!=(const GURL & gurl2) const; /// Assignment operator GURL & operator=(const GURL & url); --- ./libdjvu/ByteStream.h~ 2006-03-21 18:32:43.000000000 +0000 +++ ./libdjvu/ByteStream.h 2006-03-21 18:32:50.000000000 +0000 @@ -242,7 +242,7 @@ and writes it to the specified stream. */ void formatmessage( const char *fmt, ... ); /** Looks up the message and writes it to the specified stream. */ - void ByteStream::writemessage( const char *message ); + void writemessage( const char *message ); /** Writes a one-byte integer to a ByteStream. */ void write8 (unsigned int card8); /** Writes a two-bytes integer to a ByteStream. But then I get: make[2]: Entering directory `/home/tbm/src/djvulibre-3.5.16/gui/djview' make[2]: Circular Makefile.dep <- Makefile.dep dependency dropped. x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I../.. -I../../libdjvu -I./ -I../../gui/indep/QT/ -I../../gui/indep/QX/ -I../../gui/indep/utils/ -I../../gui/shared/QT/ -I../../gui/shared/res/ -I../../gui/shared/utils/ -I. -DNDEBUG -Wall -O3 -Wno-non-virtual-dtor -pthread -DTHREADMODEL=POSIXTHREADS -I/usr/include/qt3 -I/usr/X11R6/include -c ../../gui/indep/QX/qx_imager.cpp ../../libdjvu/GContainer.h: In member function 'DJVU::GCont::HNode* DJVU::GMapImpl<K, TI>::get_or_create(const K&) [with K = unsigned int, TI = int]': ../../libdjvu/GContainer.h:1204: instantiated from 'VTYPE& DJVU::GMapTemplate<KTYPE, VTYPE, TI>::operator[](const KTYPE&) [with KTYPE = unsigned int, VTYPE = int, TI = int]' ../../gui/indep/utils/col_db.h:111: instantiated from here ../../libdjvu/GContainer.h:1131: error: invalid initialization of reference of type 'const DJVU::GPixel&' from expression of type 'const unsigned int' ../../libdjvu/GPixmap.h:451: error: in passing argument 1 of 'unsigned int DJVU::hash(const DJVU::GPixel&)' ../../libdjvu/GContainer.h: In member function 'DJVU::GCont::HNode* DJVU::GMapImpl<K, TI>::get_or_create(const K&) [with K = long unsigned int, TI = DJVU::GP<DXImage>]': ../../libdjvu/GContainer.h:1204: instantiated from 'VTYPE& DJVU::GMapTemplate<KTYPE, VTYPE, TI>::operator[](const KTYPE&) [with KTYPE = long unsigned int, VTYPE = DJVU::GP<DXImage>, TI = DJVU::GP<DXImage>]' ../../gui/indep/QX/qx_imager.cpp:1230: instantiated from here ../../libdjvu/GContainer.h:1131: error: invalid initialization of reference of type 'const DJVU::GPixel&' from expression of type 'const long unsigned int' ../../libdjvu/GPixmap.h:451: error: in passing argument 1 of 'unsigned int DJVU::hash(const DJVU::GPixel&)' ../../libdjvu/GContainer.h: In member function 'DJVU::GCont::HNode* DJVU::GSetImpl<K>::get(const K&) const [with K = unsigned int]': ../../libdjvu/GContainer.h:1038: instantiated from 'DJVU::GPosition DJVU::GSetImpl<K>::contains(const K&) const [with K = unsigned int]' ../../libdjvu/GContainer.h:1166: instantiated from 'DJVU::GPosition DJVU::GMapTemplate<KTYPE, VTYPE, TI>::contains(const KTYPE&) const [with KTYPE = unsigned int, VTYPE = int, TI = int]' ../../gui/indep/utils/col_db.h:111: instantiated from here ../../libdjvu/GContainer.h:1058: error: invalid initialization of reference of type 'const DJVU::GPixel&' from expression of type 'const unsigned int' ../../libdjvu/GPixmap.h:451: error: in passing argument 1 of 'unsigned int DJVU::hash(const DJVU::GPixel&)' ../../libdjvu/GContainer.h: In member function 'DJVU::GCont::HNode* DJVU::GSetImpl<K>::get(const K&) const [with K = long unsigned int]': ../../libdjvu/GContainer.h:1038: instantiated from 'DJVU::GPosition DJVU::GSetImpl<K>::contains(const K&) const [with K = long unsigned int]' ../../libdjvu/GContainer.h:1166: instantiated from 'DJVU::GPosition DJVU::GMapTemplate<KTYPE, VTYPE, TI>::contains(const KTYPE&) const [with KTYPE = long unsigned int, VTYPE = DJVU::GP<DXImage>, TI = DJVU::GP<DXImage>]' ../../gui/indep/QX/qx_imager.cpp:248: instantiated from here ../../libdjvu/GContainer.h:1058: error: invalid initialization of reference of type 'const DJVU::GPixel&' from expression of type 'const long unsigned int' ../../libdjvu/GPixmap.h:451: error: in passing argument 1 of 'unsigned int DJVU::hash(const DJVU::GPixel&)' make[2]: *** [qx_imager.o] Error 1 make[2]: Target `all' not remade because of errors. make[2]: Leaving directory `/home/tbm/src/djvulibre-3.5.16/gui/djview' -- Martin Michlmayr http://www.cyrius.com/
--- End Message ---
--- Begin Message ---Source: djvulibre Source-Version: 3.5.17-1 We believe that the bug you reported is fixed in the latest version of djvulibre, which is due to be installed in the Debian FTP archive: djview_3.5.17-1_i386.deb to pool/main/d/djvulibre/djview_3.5.17-1_i386.deb djvulibre-bin_3.5.17-1_i386.deb to pool/main/d/djvulibre/djvulibre-bin_3.5.17-1_i386.deb djvulibre-plugin_3.5.17-1_i386.deb to pool/main/d/djvulibre/djvulibre-plugin_3.5.17-1_i386.deb djvulibre_3.5.17-1.diff.gz to pool/main/d/djvulibre/djvulibre_3.5.17-1.diff.gz djvulibre_3.5.17-1.dsc to pool/main/d/djvulibre/djvulibre_3.5.17-1.dsc djvulibre_3.5.17.orig.tar.gz to pool/main/d/djvulibre/djvulibre_3.5.17.orig.tar.gz djvuserve_3.5.17-1_i386.deb to pool/main/d/djvulibre/djvuserve_3.5.17-1_i386.deb libdjvulibre-dev_3.5.17-1_i386.deb to pool/main/d/djvulibre/libdjvulibre-dev_3.5.17-1_i386.deb libdjvulibre15_3.5.17-1_i386.deb to pool/main/d/djvulibre/libdjvulibre15_3.5.17-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. Barak A. Pearlmutter <[EMAIL PROTECTED]> (supplier of updated djvulibre 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: Thu, 27 Apr 2006 18:11:37 -0400 Source: djvulibre Binary: libdjvulibre15 djvulibre-bin djvuserve libdjvulibre-dev djview djvulibre-plugin Architecture: source i386 Version: 3.5.17-1 Distribution: unstable Urgency: low Maintainer: Barak A. Pearlmutter <[EMAIL PROTECTED]> Changed-By: Barak A. Pearlmutter <[EMAIL PROTECTED]> Description: djview - Viewer for the DjVu image format djvulibre-bin - Utilities for the DjVu image format djvulibre-plugin - Browser plugin for the DjVu image format djvuserve - CGI program for unbundling DjVu files on the fly libdjvulibre-dev - Development files for the DjVu image format libdjvulibre15 - Runtime support for the DjVu image format Closes: 320582 320621 320656 320794 321107 321244 321406 321509 321652 322600 322773 322882 358206 364316 Changes: djvulibre (3.5.17-1) unstable; urgency=low . * New upstream release * Upstream GCC-4.1 fixes (closes: #358206) * Upstream "djvudigital --words" fix (closes: #364316) * Many NMUs merged earlier, still fixed (closes: #320582, #320621) (closes: #320656, #320794, #321244, #321406, #321509, #321652) (closes: #322600, #322882, #321107, #322773) Files: 65e719314bdf7732ccf8d51b050de08e 845 web optional djvulibre_3.5.17-1.dsc 18e71eec1f7d59ef4710b405ea64650e 2298690 web optional djvulibre_3.5.17.orig.tar.gz 4ba612bc003cdcef1c356bd414d0d421 39730 web optional djvulibre_3.5.17-1.diff.gz 4489d7497dfbc9db7d66644c2983d97d 709132 devel optional libdjvulibre-dev_3.5.17-1_i386.deb 5bb504817009d467d6942979c7f369e9 794818 libs optional libdjvulibre15_3.5.17-1_i386.deb 506a800755c960c3ec27a8af6a4ed393 451234 graphics optional djview_3.5.17-1_i386.deb 1c5591923b6edaba36013a58c5192454 29020 web optional djvuserve_3.5.17-1_i386.deb 700e528532b29b7f2a655f4da79951fb 357188 graphics optional djvulibre-bin_3.5.17-1_i386.deb df83602deb08a1ab3848d327739c6846 25168 web optional djvulibre-plugin_3.5.17-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFEfG0oLz4Gnv7CP7IRAq/5AJ916AmHnMapjkAuCEuJZwf0H2ZKWACgpsdd KvK2HJalvglk5SLuITFUCCM= =W4L8 -----END PGP SIGNATURE-----
--- End Message ---

