From 52eb8d361967bdb02a420d62ac7aa014b0656ff3 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 5 Jan 2011 18:15:19 +0000 Subject: [PATCH] revert r2496 --- SConstruct | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index 2cb9c61e7..4f76f7f7c 100644 --- a/SConstruct +++ b/SConstruct @@ -1170,9 +1170,7 @@ if not preconfigured: env.Append(CXXFLAGS = common_cxx_flags + '-O %s' % ndebug_flags) else: # Common flags for GCC. - # note: starting with boost 1.46 boost filesystem v3 is default so force to be v2 - # by using BOOST_FILESYSTEM_VERSION=2 (until we upgrade) - gcc_cxx_flags = '-ansi -Wall %s -ftemplate-depth-200 -DBOOST_FILESYSTEM_VERSION=2 %s' % (pthread, common_cxx_flags) + gcc_cxx_flags = '-ansi -Wall %s -ftemplate-depth-200 %s' % (pthread, common_cxx_flags) if env['DEBUG']: env.Append(CXXFLAGS = gcc_cxx_flags + '-O0 -fno-inline %s' % debug_flags)