Package: aewm++-goodies
Version: 1.0-8
Severity: normal
Tags: patch
Hi,
Attached is the diff for my aewm++-goodies 1.0-8.1 NMU.
diff -u aewm++-goodies-1.0/debian/changelog aewm++-goodies-1.0/debian/changelog
--- aewm++-goodies-1.0/debian/changelog
+++ aewm++-goodies-1.0/debian/changelog
@@ -1,3 +1,11 @@
+aewm++-goodies (1.0-8.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS with GCC 4.3 (Closes: #461726).
+ * Add libxext-dev to the buid dependencies (Closes: #464603).
+
+ -- Luk Claes <[EMAIL PROTECTED]> Sun, 09 Mar 2008 18:43:46 +0000
+
aewm++-goodies (1.0-8) unstable; urgency=low
* Oops. Update Build-Depends for Xorg. (closes: #346621)
diff -u aewm++-goodies-1.0/debian/control aewm++-goodies-1.0/debian/control
--- aewm++-goodies-1.0/debian/control
+++ aewm++-goodies-1.0/debian/control
@@ -2,7 +2,7 @@
Section: x11
Priority: optional
Maintainer: Chris Boyle <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.0.0), libx11-dev, libxpm-dev
+Build-Depends: debhelper (>> 4.0.0), libx11-dev, libxpm-dev, libxext-dev
Standards-Version: 3.6.0
Package: aewm++-goodies
only in patch2:
unchanged:
--- aewm++-goodies-1.0.orig/appbar-1.0/scanner.hh
+++ aewm++-goodies-1.0/appbar-1.0/scanner.hh
@@ -25,11 +25,13 @@
#ifndef _SCANNER_HH_
#define _SCANNER_HH_
-#include <iostream.h>
-#include <fstream.h>
+#include <iostream>
+#include <fstream>
#include <cstdlib>
#include <string>
+using namespace std;
+
#define MAX_TOKEN_BUFFER 256
class Scanner {