From 7f036bc82204eb5089f3aaf41776caef94b93c3f Mon Sep 17 00:00:00 2001 From: Carlos Corbacho Date: Mon, 10 Sep 2012 10:25:32 +0200 Subject: games/zsnes: Added a patch for gcc and fixed the desktop categories. Signed-off-by: Matteo Bernardini --- games/zsnes/0012-Fix-build-with-gcc-4.7.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 games/zsnes/0012-Fix-build-with-gcc-4.7.patch (limited to 'games/zsnes/0012-Fix-build-with-gcc-4.7.patch') diff --git a/games/zsnes/0012-Fix-build-with-gcc-4.7.patch b/games/zsnes/0012-Fix-build-with-gcc-4.7.patch new file mode 100644 index 000000000000..2c29f5be4348 --- /dev/null +++ b/games/zsnes/0012-Fix-build-with-gcc-4.7.patch @@ -0,0 +1,24 @@ +From: Etienne Millon +Date: Thu, 12 Apr 2012 18:01:45 +0200 +Subject: Fix build with gcc 4.7 + +Headers in the new C++ library do not implicitly import unistd.h, so it is +necessary to do it in the source. + +Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667429 +--- + src/tools/depbuild.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/tools/depbuild.cpp b/src/tools/depbuild.cpp +index 1e4bbc5..ea0854c 100644 +--- a/src/tools/depbuild.cpp ++++ b/src/tools/depbuild.cpp +@@ -25,6 +25,7 @@ This program generates dependencies for all C/C++/Assembly files + #include + #include + #include ++#include + using namespace std; + + #include "fileutil.h" -- cgit v1.2.3