Gentoo Archives: gentoo-commits

From: "Keri Harris (keri)" <keri@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/xsb/files: xsb-3.1-configure.patch
Date: Sat, 11 Oct 2008 03:50:15
Message-Id: E1KoVUa-0002lO-CQ@stork.gentoo.org
1 keri 08/10/11 03:50:12
2
3 Modified: xsb-3.1-configure.patch
4 Log:
5 Fix configure to ignore interprolog with USE=-java. Closes #240209
6 (Portage version: 2.1.4.5)
7
8 Revision Changes Path
9 1.2 dev-lang/xsb/files/xsb-3.1-configure.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/files/xsb-3.1-configure.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/files/xsb-3.1-configure.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/xsb/files/xsb-3.1-configure.patch?r1=1.1&r2=1.2
14
15 Index: xsb-3.1-configure.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/xsb/files/xsb-3.1-configure.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- xsb-3.1-configure.patch 25 Nov 2007 05:09:32 -0000 1.1
22 +++ xsb-3.1-configure.patch 11 Oct 2008 03:50:12 -0000 1.2
23 @@ -1,5 +1,5 @@
24 --- XSB.orig/build/configure.in 2007-08-23 07:21:23.000000000 +1200
25 -+++ XSB/build/configure.in 2007-11-24 19:54:25.000000000 +1300
26 ++++ XSB/build/configure.in 2008-10-11 16:43:56.000000000 +1300
27 @@ -366,9 +366,9 @@
28 dnl prefix given by the user. The prefix variable will later get
29 dnl the <xsb-version> subdirectory added in.
30 @@ -175,6 +175,15 @@
31 if test "${java_support}" != "yes"; then
32 echo "Interprolog not supported due to failure to find Java"
33 with_interprolog=""
34 +@@ -1286,7 +1289,7 @@
35 + INTERPROLOGSRC=""
36 + INTERPROLOGOBJ=""
37 +
38 +-if test "${with_interprolog+set}" = "set"; then
39 ++if test "${with_interprolog}" = "yes"; then
40 + AC_DEFINE(XSB_INTERPROLOG)
41 + with_interprolog=yes
42 + INTERPROLOGSRC="interprolog_callback.c"
43 @@ -1304,14 +1307,14 @@
44 if test "${enable_profile}" = "yes"; then
45 AC_DEFINE(DEBUG)