Your message dated Wed, 02 May 2007 18:17:06 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417714: fixed in strigi 0.3.11-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: strigi
Version: 0.3.9-1
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 strigi_0.3.9-1 on em64t by sbuild/amd64 0.53
...
> /usr/lib/gcc-snapshot/bin/c++ -Wall -g3 -O0 -ansi -O2 -g
> -I/usr/include/log4cxx -I/build/tbm/strigi-0.3.9/./src/filters/../streams
> -I/build/tbm/strigi-0.3.9/./src/filters/../streamindexer -fPIC
> -DHAVE_LOG4CXX -o src/filters/CMakeFiles/filters.dir/filters.o -c
> /build/tbm/strigi-0.3.9/./src/filters/filters.cpp
> /usr/bin/cmake -E cmake_progress_report
> /build/tbm/strigi-0.3.9/./obj-x86_64-linux-gnu/CMakeFiles 1
> [ 1%] Building CXX object src/filters/CMakeFiles/filters.dir/filtermanager.o
> /usr/lib/gcc-snapshot/bin/c++ -Wall -g3 -O0 -ansi -O2 -g
> -I/usr/include/log4cxx -I/build/tbm/strigi-0.3.9/./src/filters/../streams
> -I/build/tbm/strigi-0.3.9/./src/filters/../streamindexer -fPIC
> -DHAVE_LOG4CXX -o src/filters/CMakeFiles/filters.dir/filtermanager.o -c
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.cpp
> In file included from
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.cpp:22:
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.h:55: error: 'uint' has
> not been declared
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.cpp:59: error: prototype
> for 'bool FilterManager::findMatch(const char*, uint)' does not match any in
> class 'FilterManager'
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.h:55: error: candidates
> are: bool FilterManager::findMatch(const char*, int)
> /build/tbm/strigi-0.3.9/./src/filters/filtermanager.h:48: error:
> bool FilterManager::findMatch(std::string&)
--- src/sqliteindexer/sqliteindexwriter.cpp~ 2007-04-04 11:37:21.000000000
+0000
+++ src/sqliteindexer/sqliteindexwriter.cpp 2007-04-04 11:37:29.000000000
+0000
@@ -19,6 +19,7 @@
*/
#include "sqliteindexwriter.h"
#include "sqliteindexmanager.h"
+#include <cstdlib>
#include <vector>
#include <sstream>
#include <cassert>
--- src/sqliteindexer/sqliteindexmanager.cpp~ 2007-04-04 11:37:37.000000000
+0000
+++ src/sqliteindexer/sqliteindexmanager.cpp 2007-04-04 11:37:46.000000000
+0000
@@ -21,6 +21,7 @@
#include "sqliteindexreader.h"
#include "sqliteindexwriter.h"
#include "strigi_thread.h"
+#include <cstdlib>
using namespace std;
using namespace jstreams;
--- src/sqliteindexer/sqliteindexreader.cpp~ 2007-04-04 11:38:06.000000000
+0000
+++ src/sqliteindexer/sqliteindexreader.cpp 2007-04-04 11:38:12.000000000
+0000
@@ -19,6 +19,7 @@
*/
#include "sqliteindexreader.h"
#include "sqliteindexmanager.h"
+#include <cstdlib>
#include <set>
#include <sstream>
using namespace std;
--- src/luceneindexer/tests/CLuceneTest.cpp~ 2007-04-04 11:46:57.000000000
+0000
+++ src/luceneindexer/tests/CLuceneTest.cpp 2007-04-04 11:47:02.000000000
+0000
@@ -5,6 +5,7 @@
#include "indexreadertests.h"
#include <sys/stat.h>
#include <sys/types.h>
+#include <cstdlib>
int
CLuceneTest(int argc, char**argv) {
--- src/daemon/eventlistener/pollinglistener.h~ 2007-04-04 11:39:58.000000000
+0000
+++ src/daemon/eventlistener/pollinglistener.h 2007-04-04 11:40:06.000000000
+0000
@@ -22,6 +22,7 @@
#include "eventlistener.h"
+#include <cstdlib>
#include <map>
#include <pthread.h>
--- src/daemon/dbus/dbusserver.cpp~ 2007-04-04 11:40:26.000000000 +0000
+++ src/daemon/dbus/dbusserver.cpp 2007-04-04 11:40:34.000000000 +0000
@@ -23,6 +23,7 @@
#include "dbusclientinterface.h"
#include "testinterface.h"
#include "dbustestinterface.h"
+#include <cstdlib>
using namespace std;
void*
--- src/daemon/socketclient.cpp~ 2007-04-04 11:38:29.000000000 +0000
+++ src/daemon/socketclient.cpp 2007-04-04 11:38:43.000000000 +0000
@@ -24,6 +24,7 @@
#include <sys/un.h>
#include <errno.h>
#include <assert.h>
+#include <cstdlib>
#include <sstream>
using namespace std;
--- src/daemon/asyncsocket.h~ 2007-04-04 11:39:21.000000000 +0000
+++ src/daemon/asyncsocket.h 2007-04-04 11:39:30.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef ASYNCSOCKET_H
#define ASYNCSOCKET_H
+#include <cstdlib>
#include <string>
class AsyncSocket {
--- src/daemon/indexscheduler.h~ 2007-04-04 11:41:09.000000000 +0000
+++ src/daemon/indexscheduler.h 2007-04-04 11:41:20.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef INDEXSCHEDULER_H
#define INDEXSCHEDULER_H
+#include <cstdlib>
#include <map>
#include <string>
#include <set>
--- src/daemon/socketserver.cpp~ 2007-04-04 11:41:45.000000000 +0000
+++ src/daemon/socketserver.cpp 2007-04-04 11:41:51.000000000 +0000
@@ -27,6 +27,7 @@
#include <sys/un.h>
#include <errno.h>
#include <assert.h>
+#include <cstdlib>
using namespace std;
#if defined(__APPLE__)
--- src/filters/filtermanager.h~ 2007-04-04 11:27:40.000000000 +0000
+++ src/filters/filtermanager.h 2007-04-04 11:27:46.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef FILTERMANAGER_H
#define FILTERMANAGER_H
+#include <cstdlib>
#include <map>
#include <string>
#include "strigi_thread.h"
--- src/htmlgui/strigihtmlgui.cpp~ 2007-04-04 11:42:30.000000000 +0000
+++ src/htmlgui/strigihtmlgui.cpp 2007-04-04 11:42:37.000000000 +0000
@@ -27,6 +27,7 @@
#include <sstream>
#include <fstream>
#include <sys/stat.h>
+#include <cstdlib>
using namespace std;
using namespace jstreams;
--- src/streamindexer/throughplugins/xattrthroughanalyzer.cpp~ 2007-04-04
11:45:42.000000000 +0000
+++ src/streamindexer/throughplugins/xattrthroughanalyzer.cpp 2007-04-04
11:45:49.000000000 +0000
@@ -24,6 +24,7 @@
#include <sys/types.h>
#include <attr/xattr.h>
#include <errno.h>
+#include <cstdlib>
class XattrAnalyzer : public jstreams::StreamThroughAnalyzer {
private:
--- src/streamindexer/streamindexer.h~ 2007-04-04 11:30:12.000000000 +0000
+++ src/streamindexer/streamindexer.h 2007-04-04 11:30:18.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef STREAMINDEXER_H
#define STREAMINDEXER_H
+#include <cstdlib>
#include <vector>
#include "moduleloader.h"
--- src/streamindexer/query.cpp~ 2007-04-04 11:30:48.000000000 +0000
+++ src/streamindexer/query.cpp 2007-04-04 11:31:12.000000000 +0000
@@ -20,6 +20,8 @@
#include "query.h"
#include "jstreamsconfig.h"
#include "indexreader.h"
+#include <cctype>
+#include <cstdlib>
using namespace std;
using namespace jstreams;
--- src/streamindexer/indexwriter.cpp~ 2007-04-04 11:33:26.000000000 +0000
+++ src/streamindexer/indexwriter.cpp 2007-04-04 11:33:32.000000000 +0000
@@ -20,6 +20,7 @@
#include "jstreamsconfig.h"
#include "indexwriter.h"
#include "textutils.h"
+#include <cstdlib>
using namespace jstreams;
using namespace std;
string
--- src/streamindexer/expatsaxendanalyzer.cpp~ 2007-04-04 11:33:54.000000000
+0000
+++ src/streamindexer/expatsaxendanalyzer.cpp 2007-04-04 11:34:03.000000000
+0000
@@ -23,6 +23,7 @@
#include "inputstreamreader.h"
#include "indexwriter.h"
#include <expat.h>
+#include <cctype>
using namespace jstreams;
using namespace std;
--- src/streams/pdf/pdfparser.cpp~ 2007-04-04 11:44:46.000000000 +0000
+++ src/streams/pdf/pdfparser.cpp 2007-04-04 11:45:10.000000000 +0000
@@ -3,6 +3,7 @@
#include "stringterminatedsubstream.h"
#include "gzipinputstream.h"
#include "subinputstream.h"
+#include <cctype>
using namespace jstreams;
using namespace std;
--- src/streams/pdf/pdftest.cpp~ 2007-04-04 11:45:26.000000000 +0000
+++ src/streams/pdf/pdftest.cpp 2007-04-04 11:45:31.000000000 +0000
@@ -3,6 +3,7 @@
#include "stringreader.h"
#include "gzipinputstream.h"
#include "kmpsearcher.h"
+#include <cctype>
using namespace jstreams;
extern "C" {
#include <magic.h>
--- src/streams/kmpsearcher.h~ 2007-04-04 11:28:19.000000000 +0000
+++ src/streams/kmpsearcher.h 2007-04-04 11:28:27.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef KMPSEARCHER_H
#define KMPSEARCHER_H
+#include <cstdlib>
#include <string>
namespace jstreams {
--- src/streams/substreamprovider.h~ 2007-04-04 11:28:55.000000000 +0000
+++ src/streams/substreamprovider.h 2007-04-04 11:29:03.000000000 +0000
@@ -20,6 +20,7 @@
#ifndef SUBSTREAMPROVIDER
#define SUBSTREAMPROVIDER
+#include <cstdlib>
#include <string>
#include "streambase.h"
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
Source: strigi
Source-Version: 0.3.11-2
We believe that the bug you reported is fixed in the latest version of
strigi, which is due to be installed in the Debian FTP archive:
libsearchclient-dev_0.3.11-2_i386.deb
to pool/main/s/strigi/libsearchclient-dev_0.3.11-2_i386.deb
libsearchclient0_0.3.11-2_i386.deb
to pool/main/s/strigi/libsearchclient0_0.3.11-2_i386.deb
libstreamindexer-dev_0.3.11-2_i386.deb
to pool/main/s/strigi/libstreamindexer-dev_0.3.11-2_i386.deb
libstreamindexer0_0.3.11-2_i386.deb
to pool/main/s/strigi/libstreamindexer0_0.3.11-2_i386.deb
libstreams-dev_0.3.11-2_i386.deb
to pool/main/s/strigi/libstreams-dev_0.3.11-2_i386.deb
libstreams0_0.3.11-2_i386.deb
to pool/main/s/strigi/libstreams0_0.3.11-2_i386.deb
libstrigihtmlgui-dev_0.3.11-2_i386.deb
to pool/main/s/strigi/libstrigihtmlgui-dev_0.3.11-2_i386.deb
libstrigihtmlgui0_0.3.11-2_i386.deb
to pool/main/s/strigi/libstrigihtmlgui0_0.3.11-2_i386.deb
libstrigiqtdbusclient-dev_0.3.11-2_i386.deb
to pool/main/s/strigi/libstrigiqtdbusclient-dev_0.3.11-2_i386.deb
libstrigiqtdbusclient0_0.3.11-2_i386.deb
to pool/main/s/strigi/libstrigiqtdbusclient0_0.3.11-2_i386.deb
strigi-client_0.3.11-2_i386.deb
to pool/main/s/strigi/strigi-client_0.3.11-2_i386.deb
strigi-daemon_0.3.11-2_i386.deb
to pool/main/s/strigi/strigi-daemon_0.3.11-2_i386.deb
strigi-utils_0.3.11-2_i386.deb
to pool/main/s/strigi/strigi-utils_0.3.11-2_i386.deb
strigi_0.3.11-2.diff.gz
to pool/main/s/strigi/strigi_0.3.11-2.diff.gz
strigi_0.3.11-2.dsc
to pool/main/s/strigi/strigi_0.3.11-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.
Mark Purcell <[EMAIL PROTECTED]> (supplier of updated strigi 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, 02 May 2007 06:27:39 +0100
Source: strigi
Binary: libstrigihtmlgui-dev libstrigiqtdbusclient-dev libsearchclient0
libstrigiqtdbusclient0 libstrigihtmlgui0 strigi-utils libstreamindexer0
strigi-daemon libstreamindexer-dev libstreams0 libstreams-dev strigi-client
libsearchclient-dev
Architecture: source i386
Version: 0.3.11-2
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team <[EMAIL PROTECTED]>
Changed-By: Mark Purcell <[EMAIL PROTECTED]>
Description:
libsearchclient-dev - development files for libsearchclient
libsearchclient0 - searchclient library for Strigi Desktop Search
libstreamindexer-dev - development files for libstreamsindexe
libstreamindexer0 - streamindexer library for Strigi Desktop Search
libstreams-dev - development files for libstreams
libstreams0 - streams library for for Strigi Desktop Search
libstrigihtmlgui-dev - development files for libstrigihtmlgui
libstrigihtmlgui0 - library for writing html clients for Strigi Desktop Search
libstrigiqtdbusclient-dev - development files for libstrigiqtdbusclient
libstrigiqtdbusclient0 - library for writing D-Bus clients for Strigi Desktop
Search
strigi-client - Qt4 client for Strigi Desktop Search
strigi-daemon - fast indexing and searching tool for your personal data
(daemon)
strigi-utils - command-line tools for Strigi Desktop Search
Closes: 417714
Changes:
strigi (0.3.11-2) unstable; urgency=low
.
* Robust get-orig-source target
* Include gcc4.3 patch from Martin (Closes: #417714)
Files:
8e4dda457061b024fbc50f1d0e7a11a8 1062 utils optional strigi_0.3.11-2.dsc
26664d856820a69bc2489246d1fb0d23 42732 utils optional strigi_0.3.11-2.diff.gz
1cf149bfbba6af1671dfcdbcf9463613 211000 utils optional
strigi-daemon_0.3.11-2_i386.deb
fe6ad647850c77e942fb0e44be410b20 67762 x11 optional
strigi-client_0.3.11-2_i386.deb
3f8318680461f12baf30e27add1b4969 29102 utils optional
strigi-utils_0.3.11-2_i386.deb
c6801e9a535e36a83b14d703f8d2476b 76318 libs optional
libstreams0_0.3.11-2_i386.deb
c1161ec30ddd71146102225fcace0d73 18928 libdevel optional
libstreams-dev_0.3.11-2_i386.deb
ce1c14c42d42b826dad4ab7a26716f7f 72230 libs optional
libstreamindexer0_0.3.11-2_i386.deb
e9c1670e04cf651267f882b3c7643ce8 13818 libdevel optional
libstreamindexer-dev_0.3.11-2_i386.deb
41e55ca25ba30278dc6f452d91b9a9ed 35706 libs optional
libsearchclient0_0.3.11-2_i386.deb
5aea872958f2bada109bc0be28a549a6 10360 libdevel optional
libsearchclient-dev_0.3.11-2_i386.deb
1eb1d6d7eaa4539b9dd8bc7b0cb885bf 36616 libs optional
libstrigihtmlgui0_0.3.11-2_i386.deb
36ca11e3c02424123f9aa79bf8bc6532 9876 libdevel optional
libstrigihtmlgui-dev_0.3.11-2_i386.deb
be1a420951e1ae83e75d9b519f96177a 48438 libs optional
libstrigiqtdbusclient0_0.3.11-2_i386.deb
a53098871f928b3d4e4746913fdfe877 11544 libdevel optional
libstrigiqtdbusclient-dev_0.3.11-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFGOM80oCzanz0IthIRAi5NAJ4oBakqpLJrRuO9Obd0Gs+APRef+wCgnp9f
Y/Esdkc7t+56FFhcwQW9xCg=
=un/x
-----END PGP SIGNATURE-----
--- End Message ---