Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/R/files: R-2.8.0-without-X.patch
Date: Fri, 31 Oct 2008 13:05:38
Message-Id: E1Kvth2-0002l9-MR@stork.gentoo.org
1 markusle 08/10/31 13:05:36
2
3 Added: R-2.8.0-without-X.patch
4 Log:
5 Fixed bug in source code preventing building with USE=-X (see bug #245027).
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-SENTINEL-1 i686)
7
8 Revision Changes Path
9 1.1 dev-lang/R/files/R-2.8.0-without-X.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/R/files/R-2.8.0-without-X.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/R/files/R-2.8.0-without-X.patch?rev=1.1&content-type=text/plain
13
14 Index: R-2.8.0-without-X.patch
15 ===================================================================
16 # missing ; in source code causes build failure when configured via
17 # --without-X
18 diff -Naur R-2.8.0/src/main/platform.c R-2.8.0.new/src/main/platform.c
19 --- R-2.8.0/src/main/platform.c 2008-10-07 22:05:05.000000000 -0400
20 +++ R-2.8.0.new/src/main/platform.c 2008-10-31 08:44:10.000000000 -0400
21 @@ -1654,7 +1654,7 @@
22 # ifdef HAVE_X11
23 int X11 = NA_LOGICAL;
24 # else
25 - int X11 = FALSE
26 + int X11 = FALSE;
27 # endif
28 #endif