diff options
author | Keri Harris <keri@gentoo.org> | 2008-10-11 03:50:12 +0000 |
---|---|---|
committer | Keri Harris <keri@gentoo.org> | 2008-10-11 03:50:12 +0000 |
commit | f0fa957e41d22c3c1141abe427a85aa5ed4cf07c (patch) | |
tree | b5c8eae387d28616f7e989d46b8a21db7c52265a /dev-lang/xsb/files | |
parent | Restricted yakuake mask to 2.9.2. (diff) | |
download | gentoo-2-f0fa957e41d22c3c1141abe427a85aa5ed4cf07c.tar.gz gentoo-2-f0fa957e41d22c3c1141abe427a85aa5ed4cf07c.tar.bz2 gentoo-2-f0fa957e41d22c3c1141abe427a85aa5ed4cf07c.zip |
Fix configure to ignore interprolog with USE=-java. Closes #240209
(Portage version: 2.1.4.5)
Diffstat (limited to 'dev-lang/xsb/files')
-rw-r--r-- | dev-lang/xsb/files/xsb-3.1-configure.patch | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dev-lang/xsb/files/xsb-3.1-configure.patch b/dev-lang/xsb/files/xsb-3.1-configure.patch index 9df053f0222f..956432b110d7 100644 --- a/dev-lang/xsb/files/xsb-3.1-configure.patch +++ b/dev-lang/xsb/files/xsb-3.1-configure.patch @@ -1,5 +1,5 @@ --- XSB.orig/build/configure.in 2007-08-23 07:21:23.000000000 +1200 -+++ XSB/build/configure.in 2007-11-24 19:54:25.000000000 +1300 ++++ XSB/build/configure.in 2008-10-11 16:43:56.000000000 +1300 @@ -366,9 +366,9 @@ dnl prefix given by the user. The prefix variable will later get dnl the <xsb-version> subdirectory added in. @@ -175,6 +175,15 @@ if test "${java_support}" != "yes"; then echo "Interprolog not supported due to failure to find Java" with_interprolog="" +@@ -1286,7 +1289,7 @@ + INTERPROLOGSRC="" + INTERPROLOGOBJ="" + +-if test "${with_interprolog+set}" = "set"; then ++if test "${with_interprolog}" = "yes"; then + AC_DEFINE(XSB_INTERPROLOG) + with_interprolog=yes + INTERPROLOGSRC="interprolog_callback.c" @@ -1304,14 +1307,14 @@ if test "${enable_profile}" = "yes"; then AC_DEFINE(DEBUG) |