tags 413485 + patch thanks Hi,
Attached is the diff for my config-manager 0.3-3.1 NMU.
diff -u config-manager-0.3/debian/changelog config-manager-0.3/debian/changelog --- config-manager-0.3/debian/changelog +++ config-manager-0.3/debian/changelog @@ -1,3 +1,10 @@ +config-manager (0.3-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with GCC 4.3 (Closes: #413485). + + -- Luk Claes <[EMAIL PROTECTED]> Sat, 08 Mar 2008 15:11:32 +0000 + config-manager (0.3-3) unstable; urgency=low * Update to revision 159 of the python side, which brings in the diff -u config-manager-0.3/libgetopt/src/OptionSet.cc config-manager-0.3/libgetopt/src/OptionSet.cc --- config-manager-0.3/libgetopt/src/OptionSet.cc +++ config-manager-0.3/libgetopt/src/OptionSet.cc @@ -21,6 +21,7 @@ #include "getopt++/Option.h" #include "getopt++/DefaultFormatter.h" +#include <algorithm> #include <iostream> using namespace std; only in patch2: unchanged: --- config-manager-0.3.orig/src/ConfigSource.cc +++ config-manager-0.3/src/ConfigSource.cc @@ -21,6 +21,7 @@ * */ +#include <cstdlib> #include <iostream> #include "ConfigSource.h" #include "ConfigArchSource.h" only in patch2: unchanged: --- config-manager-0.3.orig/src/Directory.cc +++ config-manager-0.3/src/Directory.cc @@ -20,6 +20,7 @@ #include <sys/types.h> #include <dirent.h> #include <sys/unistd.h> +#include <cstdlib> #include <errno.h> #include <iostream> only in patch2: unchanged: --- config-manager-0.3.orig/src/cm.cc +++ config-manager-0.3/src/cm.cc @@ -26,6 +26,7 @@ #include <getopt++/BoolOption.h> #include <getopt++/StringOption.h> #include <getopt++/StringCollector.h> +#include <algorithm> #include <cassert> #include <sstream> #include <fstream>

