tags 457356 +patch thanks I'm attaching a patch to fix this problem. Please take into account that the gcc 4.3 issues are marked as release goals bugs, so this will be uploaded as a 3-day delayed NMU.
Thanks, -- "In the name of the GPL, in the name of the LGPL and in the name of the GFDL. Amen." --- (Emacs Church) Saludos /\/\ /\ >< `/
diff -u poco-1.2.9/debian/control poco-1.2.9/debian/control --- poco-1.2.9/debian/control +++ poco-1.2.9/debian/control @@ -2,8 +2,9 @@ Priority: optional Maintainer: Krzysztof Burghardt <[EMAIL PROTECTED]> Build-Depends: debhelper (>= 5), dpatch, libssl-dev (>= 0.9.8) -Standards-Version: 3.7.2 +Standards-Version: 3.7.3 Section: libs +Homepage: http://poco.sourceforge.net/ Package: libpoco-dev Section: libdevel @@ -16,8 +17,6 @@ * The Util library (contains classes for working with configuration files and command line arguments) * The Net library (contains network classes like sockets, HTTP, etc.) - . - Homepage: http://poco.sourceforge.net/ Package: libpoco2 Section: libs @@ -33,2 +31,0 @@ - . - Homepage: http://poco.sourceforge.net/ diff -u poco-1.2.9/debian/patches/00list poco-1.2.9/debian/patches/00list --- poco-1.2.9/debian/patches/00list +++ poco-1.2.9/debian/patches/00list @@ -3,0 +4 @@ +40_gcc_4.3_missing_include.dpatch diff -u poco-1.2.9/debian/changelog poco-1.2.9/debian/changelog --- poco-1.2.9/debian/changelog +++ poco-1.2.9/debian/changelog @@ -1,3 +1,14 @@ +poco (1.2.9-2.1) unstable; urgency=low + + * Non-maintainer upload to fix clamfs' FTBFS + * Added 40_gcc_4.3_missing_include.dpatch to add a missing header + in Foundation/include/Poco/FIFOStrategy.h (Closes: #455147) + * Moved Homepage from pseudo field to real field + * Added a watch file + * Updated Standards-Version to 3.7.3, no changes needed + + -- Maximiliano Curia <[EMAIL PROTECTED]> Fri, 21 Mar 2008 19:29:38 -0300 + poco (1.2.9-2) unstable; urgency=medium * Add patch for GCC-4.3 (Closes: #421144) only in patch2: unchanged: --- poco-1.2.9.orig/debian/watch +++ poco-1.2.9/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/poco/poco-(.+)\.tar\.gz only in patch2: unchanged: --- poco-1.2.9.orig/debian/patches/40_gcc_4.3_missing_include.dpatch +++ poco-1.2.9/debian/patches/40_gcc_4.3_missing_include.dpatch @@ -0,0 +1,17 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 40_gcc_4.3_missing_include.dpatch by <[EMAIL PROTECTED]> +## +## DP: Adds missing headers + [EMAIL PROTECTED]@ +diff -urNad poco-1.2.9~/Foundation/include/Poco/FIFOStrategy.h poco-1.2.9/Foundation/include/Poco/FIFOStrategy.h +--- poco-1.2.9~/Foundation/include/Poco/FIFOStrategy.h 2008-03-21 19:53:02.000000000 -0300 ++++ poco-1.2.9/Foundation/include/Poco/FIFOStrategy.h 2008-03-21 19:54:04.000000000 -0300 +@@ -43,6 +43,7 @@ + #include <map> + #include <list> + ++#include <memory> + + namespace Poco { +

