tags 417725 + patch thanks Hi,
Attached is the diff for my tau 2.16.4-1.1 NMU.
diff -u tau-2.16.4/debian/changelog tau-2.16.4/debian/changelog --- tau-2.16.4/debian/changelog +++ tau-2.16.4/debian/changelog @@ -1,3 +1,10 @@ +tau (2.16.4-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with GCC 4.3 (Closes: #417725). + + -- Luk Claes <[EMAIL PROTECTED]> Sat, 15 Mar 2008 17:49:56 +0000 + tau (2.16.4-1) unstable; urgency=low * New upstream release, orig tarball cleaned up. only in patch2: unchanged: --- tau-2.16.4.orig/src/Profile/TauHooks.cpp +++ tau-2.16.4/src/Profile/TauHooks.cpp @@ -30,6 +30,7 @@ // Include Files ////////////////////////////////////////////////////////////////////// +#include <cstdlib> #include <stdio.h> #include <string.h> #include <Profile/Profiler.h> only in patch2: unchanged: --- tau-2.16.4.orig/src/Profile/Profiler.cpp +++ tau-2.16.4/src/Profile/Profiler.cpp @@ -58,6 +58,7 @@ #include <fcntl.h> #include <time.h> #include <stdlib.h> +#include <climits> #if (!defined(TAU_WINDOWS)) #include <sys/types.h> only in patch2: unchanged: --- tau-2.16.4.orig/src/Profile/UserEvent.cpp +++ tau-2.16.4/src/Profile/UserEvent.cpp @@ -50,7 +50,7 @@ typedef unsigned long long x_uint64; #endif - +#include <cstdlib> #include <stdio.h> #include <fcntl.h> only in patch2: unchanged: --- tau-2.16.4.orig/src/Profile/PthreadLayer.cpp +++ tau-2.16.4/src/Profile/PthreadLayer.cpp @@ -34,9 +34,11 @@ //#define DEBUG_PROF #ifdef TAU_DOT_H_LESS_HEADERS +#include <cstdlib> #include <iostream> using namespace std; #else /* TAU_DOT_H_LESS_HEADERS */ +#include <stdlib.h> #include <iostream.h> #endif /* TAU_DOT_H_LESS_HEADERS */ #include "Profile/Profiler.h" only in patch2: unchanged: --- tau-2.16.4.orig/utils/tau_platforms.h +++ tau-2.16.4/utils/tau_platforms.h @@ -24,6 +24,7 @@ #define TAUERRNO errno # endif // SOL2CC +#define TAU_DOT_H_LESS_HEADERS #ifdef TAU_DOT_H_LESS_HEADERS # include <iostream> # include <map> only in patch2: unchanged: --- tau-2.16.4.orig/utils/tau_events.cpp +++ tau-2.16.4/utils/tau_events.cpp @@ -38,6 +38,7 @@ # define F_EXISTS 0 +#define TAU_DOT_H_LESS_HEADERS #ifdef TAU_DOT_H_LESS_HEADERS #include <vector> #include <map>