tags 455636 + patch thanks Hi,
Attached is the diff for my dc-qt 0.2.0.alpha-3.1 NMU. Cheers, Moritz
diff -u dc-qt-0.2.0.alpha/debian/changelog dc-qt-0.2.0.alpha/debian/changelog --- dc-qt-0.2.0.alpha/debian/changelog +++ dc-qt-0.2.0.alpha/debian/changelog @@ -1,3 +1,10 @@ +dc-qt (0.2.0.alpha-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix GCC 4.3 compatibility, patch by Cyril Boulebois (Closes: #455636) + + -- Moritz Muehlenhoff <[EMAIL PROTECTED]> Wed, 19 Mar 2008 21:18:04 +0100 + dc-qt (0.2.0.alpha-3) unstable; urgency=low * Fix FTBFS with newer boost libraries (Closes: #425074) only in patch2: unchanged: --- dc-qt-0.2.0.alpha.orig/debian/patches/40_gcc43_compat.diff +++ dc-qt-0.2.0.alpha/debian/patches/40_gcc43_compat.diff @@ -0,0 +1,32 @@ +--- a/dcpp/ShareManager.cpp ++++ b/dcpp/ShareManager.cpp +@@ -42,6 +42,7 @@ + #endif + + #include <limits> ++#include <memory> + + ShareManager::ShareManager() : hits(0), listLen(0), bzXmlListLen(0), + xmlDirty(true), nmdcDirty(false), refreshDirs(false), update(false), initial(true), listN(0), lFile(NULL), +--- a/rpcdriver/datainputstream.cpp ++++ b/rpcdriver/datainputstream.cpp +@@ -16,6 +16,8 @@ + + #include <boost/scoped_array.hpp> + ++#include <cstring> ++ + using std::string; + + namespace rpc +--- a/rpcdriver/outputbuffer.h ++++ b/rpcdriver/outputbuffer.h +@@ -6,6 +6,8 @@ + using namespace std; + #include <boost/shared_ptr.hpp> + ++#include <cstring> ++ + namespace rpc { + + /**