tags 417449 + patch
thanks

Hi,

Attached is the diff for my nload 0.6.0-3.1 NMU.
diff -u nload-0.6.0/debian/changelog nload-0.6.0/debian/changelog
--- nload-0.6.0/debian/changelog
+++ nload-0.6.0/debian/changelog
@@ -1,3 +1,10 @@
+nload (0.6.0-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with GCC 4.3 (Closes: #417449).
+
+ -- Luk Claes <[EMAIL PROTECTED]>  Thu, 13 Mar 2008 22:55:34 +0000
+
 nload (0.6.0-3) unstable; urgency=low
 
   * Apply patch by Paul Brook <[EMAIL PROTECTED]> so that nload works correctly on
@@ -76,3 +82,0 @@
-Local variables:
-mode: debian-changelog
-End:
only in patch2:
unchanged:
--- nload-0.6.0.orig/src/dev.cpp
+++ nload-0.6.0/src/dev.cpp
@@ -20,6 +20,7 @@
 #include "graph.h"
 #include "window.h"
 #include "options.h"
+#include <cstring>
 
 Dev::Dev() : Proc::Proc()
 {
only in patch2:
unchanged:
--- nload-0.6.0.orig/src/opt_window.cpp
+++ nload-0.6.0/src/opt_window.cpp
@@ -17,6 +17,7 @@
 
 #include "opt_window.h"
 #include "options.h"
+#include <cstring>
 
 const int BORDER_LEFT = 1;
 const int BORDER_RIGHT = 1;
only in patch2:
unchanged:
--- nload-0.6.0.orig/src/main.cpp
+++ nload-0.6.0/src/main.cpp
@@ -41,7 +41,8 @@
 #include <time.h>
 #include <curses.h>
 #include <signal.h>
-#include <string>
+#include <cstdlib>
+#include <cstring>
 #include <vector>
 using std::string;
 using std::vector;

Reply via email to