From 39183733f047676e1ec9f4b8aaae2213ce10bd78 Mon Sep 17 00:00:00 2001 From: Dave Goodwin Date: Thu, 10 May 2007 03:38:38 +0000 Subject: [PATCH] *** empty log message *** --- preconfig | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/preconfig b/preconfig index 73e4fa7c6..729aa61e9 100755 --- a/preconfig +++ b/preconfig @@ -355,11 +355,17 @@ SHARED=${SHARED:="-dynamic"} # Cantera can be built so that it is thread safe. Doing so requires # using procedures from the boost library, so if you want thread -# safety then you need to get and install boost if you don't have it. +# safety then you need to get and install boost (http://www.boost.org) +# if you don't have it. This is turned off by default, in which case +# boost is not required to build Cantera. -BUILD_THREAD_SAFE=${BUILD_THREAD_SAFE:="y"} +BUILD_THREAD_SAFE=${BUILD_THREAD_SAFE:="n"} + +# where boost header and library files may be found BOOST_INC_DIR=${BOOST_INC_DIR:="/usr/local/include/boost-1_34"} BOOST_LIB_DIR=${BOOST_LIB_DIR:="/usr/local/lib"} + +# the boost thread library BOOST_THREAD_LIB=${BOOST_THREAD_LIB:="boost_thread-mt-1_34"} #-------------------------------------------------------------------