Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/noteedit/files: noteedit-2.8.1+gcc-4.3.1.patch
Date: Wed, 25 Jun 2008 17:24:29
Message-Id: E1KBYjH-0007xo-Cj@stork.gentoo.org
1 aballier 08/06/25 17:24:23
2
3 Added: noteedit-2.8.1+gcc-4.3.1.patch
4 Log:
5 fix build with gcc 4.3 with tse3 useflag on, by Markus Rathgeb <maggu2810@×××.de>, bug #229291
6 (Portage version: 2.2_rc1/cvs/Linux 2.6.25.7 x86_64)
7
8 Revision Changes Path
9 1.1 media-sound/noteedit/files/noteedit-2.8.1+gcc-4.3.1.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/noteedit/files/noteedit-2.8.1+gcc-4.3.1.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/noteedit/files/noteedit-2.8.1+gcc-4.3.1.patch?rev=1.1&content-type=text/plain
13
14 Index: noteedit-2.8.1+gcc-4.3.1.patch
15 ===================================================================
16 diff -Naur noteedit-2.8.1.orig/configure.in.in noteedit-2.8.1/configure.in.in
17 --- noteedit-2.8.1.orig/configure.in.in 2006-03-27 08:07:18.000000000 +0200
18 +++ noteedit-2.8.1/configure.in.in 2008-06-24 23:04:48.000000000 +0200
19 @@ -275,10 +275,10 @@
20
21 fi
22 cat >tse3vtest.cc << EOF
23 -#include <istream.h>
24 +#include <iostream>
25 #include <tse3/TSE3.h>
26 int main() {
27 - cout << TSE3::TSE3_Version() << endl;
28 + std::cout << TSE3::TSE3_Version() << std::endl;
29 return 0;
30 }
31 EOF
32 diff -Naur noteedit-2.8.1.orig/kguitar_excerpt/fingerlist.cpp noteedit-2.8.1/kguitar_excerpt/fingerlist.cpp
33 --- noteedit-2.8.1.orig/kguitar_excerpt/fingerlist.cpp 2006-03-26 22:54:31.000000000 +0200
34 +++ noteedit-2.8.1/kguitar_excerpt/fingerlist.cpp 2008-06-24 23:04:24.000000000 +0200
35 @@ -21,7 +21,7 @@
36 #if GCC_MAJ_VERS > 2
37 #include <istream>
38 #else
39 -#include <istream.h>
40 +#include <istream>
41 #endif
42 #include <qpainter.h>
43 #include <qcolor.h>
44
45
46
47 --
48 gentoo-commits@l.g.o mailing list