From 2e4ca61fae62ebfd227d15a4be882c24361cdbbd Mon Sep 17 00:00:00 2001 From: mquinson Date: Mon, 6 Aug 2007 11:39:02 +0000 Subject: [PATCH] fix win build git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3980 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 16ccabcfa5..5b57c285a0 100644 --- a/configure.ac +++ b/configure.ac @@ -160,9 +160,9 @@ if test "x$with_context" = "xpthread"; then AC_CHECK_LIB(pthread,pthread_create,, [AC_MSG_ERROR([[Cannot find pthreads (try --with-context=ucontext if you haven't already tried).]])]) AC_DEFINE([CONTEXT_THREADS],1,[Define if xbt contexts are based on our threads implementation or not]) - AC_MSG_RESULT(You have pthreads. Let's use them.) + AC_MSG_RESULT(You have pthreads and requested for them. Fine.) fi -AM_CONDITIONAL(CONTEXT_THREADS,test "x$with_context" = xpthread) +AM_CONDITIONAL(CONTEXT_THREADS,test "x$with_context" != xucontext) dnl # dnl # 4. determine a few additional details -- 2.20.1