From: mquinson Date: Thu, 8 Jun 2006 20:08:54 +0000 (+0000) Subject: add a flag to get the pthreads directly, I'm sick of having to type such a long optio... X-Git-Tag: v3.3~3001 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2896a6d8ecfcfc9eece7de4c315b1c3bdeec7adf add a flag to get the pthreads directly, I'm sick of having to type such a long option without the completion working git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2357 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure.ac b/configure.ac index c64d987861..5843484dfc 100644 --- a/configure.ac +++ b/configure.ac @@ -112,6 +112,9 @@ dnl # 3. allow decision to be overridden by user dnl # AC_MSG_CHECKING(what kind of backend should we use) + +AC_ARG_WITH(pthread, [ --with-pthread Use pthread instead of ucontext.],with_context=pthread) + AC_ARG_WITH(context, [ --with-context=[ucontext/pthread] Use either (System V) swapcontext or pthread [[default=auto]].],, with_context=auto)