From 1356775299bfd5806b76a4a8067b93fba03c7dca Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 29 Jan 2013 17:23:10 -0500 Subject: [PATCH] scons: remove uneeded BOOST_SPIRIT_THREADSAFE flag - closes #1706 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 923a03f68..a2e0385c3 100644 --- a/SConstruct +++ b/SConstruct @@ -1491,7 +1491,7 @@ if not preconfigured: # Common C++ flags. if env['THREADING'] == 'multi': - common_cxx_flags = '-D%s -DBOOST_SPIRIT_THREADSAFE -DMAPNIK_THREADSAFE ' % env['PLATFORM'].upper() + common_cxx_flags = '-D%s -DMAPNIK_THREADSAFE ' % env['PLATFORM'].upper() else : common_cxx_flags = '-D%s ' % env['PLATFORM'].upper()