From 9948f41b1b1773483bde39efb52cd9ba3e112ac5 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Wed, 8 Mar 2006 13:49:59 +0000 Subject: [PATCH] link to boost_serialization lib --- SConstruct | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index 17b0476d4..8a332c199 100644 --- a/SConstruct +++ b/SConstruct @@ -70,7 +70,7 @@ C_LIBSHEADERS = [ BOOST_LIBSHEADERS = [ ['thread', 'boost/thread/mutex.hpp', True], ['filesystem', 'boost/filesystem/operations.hpp', True], - ['wserialization', ['boost/archive/text_oarchive.hpp', + ['serialization', ['boost/archive/text_oarchive.hpp', 'boost/archive/text_iarchive.hpp', 'boost/archive/xml_oarchive.hpp', 'boost/archive/xml_iarchive.hpp'], True @@ -127,9 +127,9 @@ env = conf.Finish() # Setup the c++ args for our own codebase if env['DEBUG']: - env.Append(CXXFLAGS = '-Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG') + env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG') else: - env.Append(CXXFLAGS = '-Wall -ftemplate-depth-100 -O3 -finline-functions -Wno-inline -pthread -DNDEBUG') + env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O3 -finline-functions -Wno-inline -pthread -DNDEBUG') # Build agg first, doesn't need anything special