From 19a7e9ad194528ab47ca3de8b385c9f537516b32 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 30 Jul 2013 12:18:48 -0400 Subject: [PATCH] make note about need for -Wno-c++11-narrowing - closes #1970 --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index e21917bcd..19336030e 100644 --- a/SConstruct +++ b/SConstruct @@ -1674,6 +1674,8 @@ if not preconfigured: if 'c++11' in env['CUSTOM_CXXFLAGS']: env.Append(CPPDEFINES = '-DBOOST_SPIRIT_USE_PHOENIX_V3=1') # - workaround boost gil channel_algorithm.hpp narrowing error + # TODO - remove when building against >= 1.55 + # https://github.com/mapnik/mapnik/issues/1970 if 'clang++' in env['CXX']: env.Append(CXXFLAGS = '-Wno-c++11-narrowing')