From 08aae2622fcdb25ea9c27f0c2ac9546766a9a84c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 29 Jul 2008 08:07:02 +0000 Subject: [PATCH] Make boost_system optional as boost before 1.35.0 doesn't have it and mapnik seems to compile fine without it. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 0b816f679..442beaa3f 100644 --- a/SConstruct +++ b/SConstruct @@ -154,7 +154,7 @@ CXX_LIBSHEADERS = [ ] BOOST_LIBSHEADERS = [ - ['system', 'boost/system/system_error.hpp', True], # uncomment this on Darwin + boost_1_35 + ['system', 'boost/system/system_error.hpp', False], ['filesystem', 'boost/filesystem/operations.hpp', True], ['regex', 'boost/regex.hpp', True], ['iostreams','boost/iostreams/device/mapped_file.hpp',True],