Switch multithreaded flag to disable by default (pass

--enable-multithreaded) to enable BulletMultiThreaded
This commit is contained in:
john.mccutchan
2008-11-14 23:55:54 +00:00
parent cc43193b25
commit a6fb51a871

View File

@@ -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])