Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/R/files: R-3.2.0-omitted-extern-R_running_as_main_program.patch
Date: Fri, 01 May 2015 13:35:48
Message-Id: 20150501133542.48DA19B0@oystercatcher.gentoo.org
1 gienah 15/05/01 13:35:41
2
3 Added:
4 R-3.2.0-omitted-extern-R_running_as_main_program.patch
5 Log:
6 Fix bug 547478 upstream R bug https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15899 thanks to Kobboi for reporting. Revbump R-3.2.0 to R-3.2.0-r1 dropping the broken R-3.2.0 to force the upgrade of R.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
9
10 Revision Changes Path
11 1.1 dev-lang/R/files/R-3.2.0-omitted-extern-R_running_as_main_program.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/R/files/R-3.2.0-omitted-extern-R_running_as_main_program.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/R/files/R-3.2.0-omitted-extern-R_running_as_main_program.patch?rev=1.1&content-type=text/plain
15
16 Index: R-3.2.0-omitted-extern-R_running_as_main_program.patch
17 ===================================================================
18 --- R-3.2.0-orig/src/include/Rinterface.h 2015-03-19 10:02:16.000000000 +1100
19 +++ R-3.2.0/src/include/Rinterface.h 2015-05-01 23:02:17.541946810 +1000
20 @@ -90,7 +90,8 @@
21 void fpu_setup(Rboolean);
22
23 /* in unix/system.c */
24 -int R_running_as_main_program;
25 +/* Gentoo bug 547478 R bug https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15899 */
26 +extern int R_running_as_main_program;
27
28 #ifdef CSTACK_DEFNS
29 /* duplicating Defn.h */