diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-10-31 13:05:36 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-10-31 13:05:36 +0000 |
commit | 8dff6c4eeb56ca015b27e0ec8218a4482d43a94d (patch) | |
tree | 87a3a597d5ca56c01067f82f314f791a24acbf7b /dev-lang/R/files | |
parent | Updated .DirIcon file type detection to match new output I'm getting from a (diff) | |
download | gentoo-2-8dff6c4eeb56ca015b27e0ec8218a4482d43a94d.tar.gz gentoo-2-8dff6c4eeb56ca015b27e0ec8218a4482d43a94d.tar.bz2 gentoo-2-8dff6c4eeb56ca015b27e0ec8218a4482d43a94d.zip |
Fixed bug in source code preventing building with USE=-X (see bug #245027).
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-SENTINEL-1 i686)
Diffstat (limited to 'dev-lang/R/files')
-rw-r--r-- | dev-lang/R/files/R-2.8.0-without-X.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-lang/R/files/R-2.8.0-without-X.patch b/dev-lang/R/files/R-2.8.0-without-X.patch new file mode 100644 index 000000000000..0fefc65083ef --- /dev/null +++ b/dev-lang/R/files/R-2.8.0-without-X.patch @@ -0,0 +1,14 @@ +# missing ; in source code causes build failure when configured via +# --without-X +diff -Naur R-2.8.0/src/main/platform.c R-2.8.0.new/src/main/platform.c +--- R-2.8.0/src/main/platform.c 2008-10-07 22:05:05.000000000 -0400 ++++ R-2.8.0.new/src/main/platform.c 2008-10-31 08:44:10.000000000 -0400 +@@ -1654,7 +1654,7 @@ + # ifdef HAVE_X11 + int X11 = NA_LOGICAL; + # else +- int X11 = FALSE ++ int X11 = FALSE; + # endif + #endif + |