From a1d1bf1d5ec7881c00106546fca6031bf365f3e0 Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 10 Jul 2007 17:29:51 +0000 Subject: [PATCH] typos preventing the java disabling from working git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3712 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 12173ed889..e39b82400a 100644 --- a/configure.ac +++ b/configure.ac @@ -218,7 +218,7 @@ if test xpthread=xyes ; then SIMGRID_DEP="-lpthread" fi # we need them in any case for the gras lib (which is multithreaded), but on windows (of course) - if test "x$with_context" = "xwindows" ; then + if test "x$with_context" != "xwindows" ; then GRAS_DEP="-lpthread" fi fi @@ -297,14 +297,14 @@ AC_MSG_CHECKING(whether to compile java bindings) if test -n "$JAVAC" \ && test -n "$JAVA" \ && test -n "$JAR" \ - && test "x$ac_cv_header_jni_h"="xyes" ; then + && test "x$ac_cv_header_jni_h" = "xyes" ; then use_java="yes" else use_java="no" fi AC_MSG_RESULT($use_java) -AM_CONDITIONAL(HAVE_JAVA,test "x$use_java"="xyes") +AM_CONDITIONAL(HAVE_JAVA,test "x$use_java" = "xyes") ##################### ## Check for programs -- 2.20.1