summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-07-19 17:36:12 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-07-19 17:36:12 +0000
commitf3f9681021b4c5c1ad73e88e0f3ba1fbbde45f4a (patch)
tree036d2b9f3a3bc27b5437a1ee31881c4cce5babc9 /app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch
parentversion bump (diff)
downloadgentoo-2-f3f9681021b4c5c1ad73e88e0f3ba1fbbde45f4a.tar.gz
gentoo-2-f3f9681021b4c5c1ad73e88e0f3ba1fbbde45f4a.tar.bz2
gentoo-2-f3f9681021b4c5c1ad73e88e0f3ba1fbbde45f4a.zip
Fix build with GCC 4.7, wrt bug #426988. Thanks to Sven Eden <yamakuzure@gmx.net>.
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch')
-rw-r--r--app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch b/app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch
new file mode 100644
index 000000000000..24995a221b3c
--- /dev/null
+++ b/app-text/goldendict/files/goldendict-1.0.1-gcc-4.7.patch
@@ -0,0 +1,40 @@
+From b00d081da20b9a6b257573c6b23a6bc640c4dab1 Mon Sep 17 00:00:00 2001
+From: Michael Palimaka <kensington@gentoo.org>
+Date: Fri, 20 Jul 2012 03:27:38 +1000
+Subject: [PATCH] Fix build with GCC 4.7 by adding missing includes.
+
+---
+ processwrapper.cc | 4 ++++
+ qtsingleapplication/src/qtlocalpeer.cpp | 1 +
+ 2 files changed, 5 insertions(+)
+
+diff --git a/processwrapper.cc b/processwrapper.cc
+index f7f3f19..86b985d 100644
+--- a/processwrapper.cc
++++ b/processwrapper.cc
+@@ -2,6 +2,10 @@
+
+ #include <QtCore>
+
++#if defined(Q_OS_UNIX)
++#include <unistd.h>
++#endif
++
+ #ifdef Q_OS_WIN32
+
+ #include <windows.h>
+diff --git a/qtsingleapplication/src/qtlocalpeer.cpp b/qtsingleapplication/src/qtlocalpeer.cpp
+index 382d182..506c142 100644
+--- a/qtsingleapplication/src/qtlocalpeer.cpp
++++ b/qtsingleapplication/src/qtlocalpeer.cpp
+@@ -50,6 +50,7 @@ static PProcessIdToSessionId pProcessIdToSessionId = 0;
+ #endif
+ #if defined(Q_OS_UNIX)
+ #include <time.h>
++#include <unistd.h>
+ #endif
+
+ namespace QtLP_Private {
+--
+1.7.11.1
+