Package: bbkeys Version: 0.9.0-7 Severity: normal Tags: patch Hi,
Attached is the diff for my bbkeys 0.9.0-7.1 NMU.
diff -u bbkeys-0.9.0/debian/changelog bbkeys-0.9.0/debian/changelog --- bbkeys-0.9.0/debian/changelog +++ bbkeys-0.9.0/debian/changelog @@ -1,3 +1,11 @@ +bbkeys (0.9.0-7.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/control: Build-depends on libxext-dev (Closes: #455224) + * Fix gcc-4.3 FTBFS, patch by KiBi (Closes: #456039) + + -- Marc 'HE' Brockschmidt <[EMAIL PROTECTED]> Sun, 16 Mar 2008 21:58:03 +0100 + bbkeys (0.9.0-7) unstable; urgency=low * Repaired the FTBFS with GCC 4.3. (closes: #417111) diff -u bbkeys-0.9.0/debian/control bbkeys-0.9.0/debian/control --- bbkeys-0.9.0/debian/control +++ bbkeys-0.9.0/debian/control @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Bruno Barrera C. <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), libbt-dev, pkg-config +Build-Depends: debhelper (>= 4.0.0), libbt-dev, libxext-dev, pkg-config Standards-Version: 3.6.2 Package: bbkeys only in patch2: unchanged: --- bbkeys-0.9.0.orig/src/Netclient.cpp +++ bbkeys-0.9.0/src/Netclient.cpp @@ -26,6 +26,8 @@ #include "Netclient.h" +#include <cstring> + Netclient::Netclient (const bt::Display &display) : bt::EWMH(display), _display(display) { only in patch2: unchanged: --- bbkeys-0.9.0.orig/src/KeyClient.cpp +++ bbkeys-0.9.0/src/KeyClient.cpp @@ -58,6 +58,7 @@ #include <iostream> #include <algorithm> #include <vector> +#include <cstring> //-------------------------------------------------------- // Constructor/Destructor only in patch2: unchanged: --- bbkeys-0.9.0.orig/src/main.cpp +++ bbkeys-0.9.0/src/main.cpp @@ -27,6 +27,8 @@ #include "main.h" +#include <cstring> + //-------------------------------------------------------- // parseOptions //-------------------------------------------------------- only in patch2: unchanged: --- bbkeys-0.9.0.orig/src/Config.cpp +++ bbkeys-0.9.0/src/Config.cpp @@ -27,6 +27,7 @@ #include <string> #include <iostream> +#include <cstring> using std::cout; Config::Config() {