From a6fb51a871aa231b0ed396d3c7b4778fb8cc90b6 Mon Sep 17 00:00:00 2001 From: "john.mccutchan" Date: Fri, 14 Nov 2008 23:55:54 +0000 Subject: [PATCH] Switch multithreaded flag to disable by default (pass --enable-multithreaded) to enable BulletMultiThreaded --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index e3ddcc50a..b0a803848 100644 --- a/configure.ac +++ b/configure.ac @@ -132,9 +132,9 @@ CS_CHECK_GLUT # Package configuration switches. #---------------------------------------------------------------------------- AC_ARG_ENABLE([multithreaded], - [AC_HELP_STRING([--disable-multithreaded], - [build without BulletMultiThreaded (default NO)])], - [disable_multithreaded=yes], [disable_multithreaded=no]) + [AC_HELP_STRING([--enable-multithreaded], + [build BulletMultiThreaded (default NO)])], + [disable_multithreaded=no], [disable_multithreaded=yes]) AC_MSG_CHECKING([BulletMultiThreaded]) AS_IF([test "$disable_multithreaded" = yes], [build_multithreaded=no], [build_multithreaded=yes]) AC_MSG_RESULT([$build_multithreaded])