[Libreoffice-commits] .: configure.in

Caolán McNamara caolan at kemper.freedesktop.org
Mon Sep 12 02:39:57 PDT 2011


 configure.in |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 9459d4e893f0e8c98479b69af5b5ab0c07bc819d
Author: Tomáš Chvátal <tchvatal at suse.cz>
Date:   Thu Sep 8 14:20:48 2011 +0200

    Do not search for java packages if --without-java is passed.
    
    Signed-off-by: Tomáš Chvátal <tchvatal at suse.cz>

diff --git a/configure.in b/configure.in
index 53882a0..20ece15 100755
--- a/configure.in
+++ b/configure.in
@@ -4977,6 +4977,7 @@ AC_SUBST(DB_CPPLIB)
 dnl ===================================================================
 dnl Check for system lucene
 dnl ===================================================================
+if test "$with_java" != "no"; then
 AC_MSG_CHECKING([which lucene to use])
 if test -n "$with_system_lucene" -o -n "$with_system_libs" && \
         test "$with_system_lucene" != "no" && test "$with_system_jars" != "no"; then
@@ -5036,6 +5037,7 @@ else
     SYSTEM_LUCENE=NO
     BUILD_TYPE="$BUILD_TYPE LUCENE"
 fi
+fi
 AC_SUBST(SYSTEM_LUCENE)
 AC_SUBST(LUCENE_CORE_JAR)
 AC_SUBST(LUCENE_ANALYZERS_JAR)
@@ -5204,6 +5206,7 @@ AC_SUBST(HSQLDB_JAR)
 dnl ===================================================================
 dnl Check for system beanshell
 dnl ===================================================================
+if test "$with_java" != "no"; then
 AC_MSG_CHECKING([which beanshell to use])
 if test -n "$with_system_beanshell" -o -n "$with_system_libs" && \
        test "$with_system_beanshell" != "no" && test "$with_system_jars" != "no"; then
@@ -5219,6 +5222,7 @@ else
     SYSTEM_BSH=NO
     BUILD_TYPE="$BUILD_TYPE BSH"
 fi
+fi
 AC_SUBST(SYSTEM_BSH)
 AC_SUBST(BSH_JAR)
 
@@ -5226,6 +5230,7 @@ AC_SUBST(BSH_JAR)
 dnl ===================================================================
 dnl Check for system saxon
 dnl ===================================================================
+if test "$with_java" != "no"; then
 AC_MSG_CHECKING([which saxon to use])
 if test -n "$with_system_saxon" -o -n "$with_system_libs" && \
        test "$with_system_saxon" != "no" && test "$with_system_jars" != "no"; then
@@ -5325,6 +5330,7 @@ else
     SYSTEM_SAXON=NO
     NEED_SAXON=TRUE
 fi
+fi
 AC_SUBST(SYSTEM_SAXON)
 AC_SUBST(SAXON_JAR)
 


More information about the Libreoffice-commits mailing list