diff options
author | Tomas Chvatal <tchvatal@suse.cz> | 2011-09-17 03:19:28 +0200 |
---|---|---|
committer | Tomas Chvatal <tchvatal@suse.cz> | 2011-09-17 03:19:28 +0200 |
commit | 25b90c055a1f183dfad537ac59d1988faeac15cf (patch) | |
tree | ec88d5d79dfc9992e478056feb2cd0537dd545f5 /configure.in | |
parent | b337edca1a4ad098810fd639d75dabc1d0ecff26 (diff) |
Check for hsqldb only if --with-java is passed.
Diffstat (limited to 'configure.in')
-rwxr-xr-x | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7f6a8618f505..13f82447515a 100755 --- a/configure.in +++ b/configure.in @@ -5156,6 +5156,7 @@ fi dnl =================================================================== dnl Check for system hsqldb dnl =================================================================== +if test "$with_java" != "no"; then AC_MSG_CHECKING([which hsqldb to use]) if test -n "$with_system_hsqldb" -o -n "$with_system_libs" && \ test "$with_system_hsqldb" != "no" && test "$with_system_jars" != "no"; then @@ -5200,6 +5201,7 @@ else fi AC_SUBST(SYSTEM_HSQLDB) AC_SUBST(HSQLDB_JAR) +fi dnl =================================================================== dnl Check for system beanshell |