Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/libgtksourceviewmm/files: 0.3.1-missing_includes.patch
Date: Sun, 03 Aug 2008 12:52:07
Message-Id: E1KPd49-0001i1-93@stork.gentoo.org
1 dev-zero 08/08/03 12:52:05
2
3 Added: 0.3.1-missing_includes.patch
4 Log:
5 Added patch to fix compilation issues with gcc-4.3.x
6 (Portage version: 2.2_rc5/cvs/Linux 2.6.26-gentoo x86_64)
7
8 Revision Changes Path
9 1.1 dev-cpp/libgtksourceviewmm/files/0.3.1-missing_includes.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libgtksourceviewmm/files/0.3.1-missing_includes.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libgtksourceviewmm/files/0.3.1-missing_includes.patch?rev=1.1&content-type=text/plain
13
14 Index: 0.3.1-missing_includes.patch
15 ===================================================================
16 diff -Naur libgtksourceviewmm-0.3.1.orig/gtksourceview/gtksourceviewmm/sourcetagstyle.cc libgtksourceviewmm-0.3.1/gtksourceview/gtksourceviewmm/sourcetagstyle.cc
17 --- libgtksourceviewmm-0.3.1.orig/gtksourceview/gtksourceviewmm/sourcetagstyle.cc 2008-08-03 14:41:06.000000000 +0200
18 +++ libgtksourceviewmm-0.3.1/gtksourceview/gtksourceviewmm/sourcetagstyle.cc 2008-08-03 14:42:26.000000000 +0200
19 @@ -27,6 +27,8 @@
20 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 +#include <cstring>
24 +
25 #include <gtksourceviewmm/sourcetagstyle.h>
26
27 namespace gtksourceview
28 diff -Naur libgtksourceviewmm-0.3.1.orig/tests/test-search.cpp libgtksourceviewmm-0.3.1/tests/test-search.cpp
29 --- libgtksourceviewmm-0.3.1.orig/tests/test-search.cpp 2008-08-03 14:41:05.000000000 +0200
30 +++ libgtksourceviewmm-0.3.1/tests/test-search.cpp 2008-08-03 14:44:44.000000000 +0200
31 @@ -1,4 +1,5 @@
32 #include <cassert>
33 +#include <cstring>
34 #include <iostream>
35 #include <fstream>
36 #include <stdexcept>