Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-scheme/guile/files: guile-1.8.7-gcc45.patch
Date: Sun, 30 May 2010 06:10:54
Message-Id: 20100530061046.C26322CAD8@corvid.gentoo.org
1 dirtyepic 10/05/30 06:10:46
2
3 Added: guile-1.8.7-gcc45.patch
4 Log:
5 Fix building w/ GCC 4.5, patch from xarthisius. (bug #317175)
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-scheme/guile/files/guile-1.8.7-gcc45.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-scheme/guile/files/guile-1.8.7-gcc45.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-scheme/guile/files/guile-1.8.7-gcc45.patch?rev=1.1&content-type=text/plain
13
14 Index: guile-1.8.7-gcc45.patch
15 ===================================================================
16 Fixing docs build with gcc-4.5
17
18 http://bugs.gentoo.org/317175
19
20 Patch scavenged from
21 http://lists.gnu.org/archive/html/guile-devel/2009-11/msg00078.html
22
23 --- libguile/guile-snarf-docs.in
24 +++ libguile/guile-snarf-docs.in
25 @@ -23,4 +23,4 @@
26 ## Let the user override the preprocessor autoconf found.
27 test -n "${CPP+set}" || CPP="@CPP@"
28
29 -${CPP} -DSCM_MAGIC_SNARF_DOCS "$@"
30 +${CPP} -P -DSCM_MAGIC_SNARF_DOCS "$@"