From df8a98750156c69609e85caac7048261eb6b3562 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 9 Feb 2011 10:43:59 +0000 Subject: [PATCH] disable SVG_RENDERER until #712 is resolved --- SConstruct | 2 +- include/mapnik/feature_style_processor.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index 2290d5a27..0db7c1fcc 100644 --- a/SConstruct +++ b/SConstruct @@ -329,7 +329,7 @@ opts.AddVariables( # Variables affecting rendering back-ends BoolVariable('INTERNAL_LIBAGG', 'Use provided libagg', 'True'), - BoolVariable('SVG_RENDERER', 'build support for native svg renderer', 'True'), + BoolVariable('SVG_RENDERER', 'build support for native svg renderer', 'False'), # Variables for optional dependencies ('GEOS_CONFIG', 'The path to the geos-config executable.', 'geos-config'), diff --git a/include/mapnik/feature_style_processor.hpp b/include/mapnik/feature_style_processor.hpp index f216135c6..77d818675 100644 --- a/include/mapnik/feature_style_processor.hpp +++ b/include/mapnik/feature_style_processor.hpp @@ -313,9 +313,9 @@ private: // if the underlying renderer is not able to process the complete set of symbolizers, // process one by one. -//#ifdef SVG_RENDERER +#ifdef SVG_RENDERER if(!p.process(symbols,*feature,prj_trans)) -//#endif +#endif { BOOST_FOREACH (symbolizer const& sym, symbols)