From 2af5a75dd7430faf24493b584033d190a2f4375b Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 30 Jul 2015 11:22:23 -0700 Subject: [PATCH] default to ptree xml parser (rapidxml inside boost) instead of libxml2 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index a09b63aa6..359801da3 100644 --- a/SConstruct +++ b/SConstruct @@ -395,7 +395,7 @@ opts.AddVariables( BoolVariable('FULL_LIB_PATH', 'Embed the full and absolute path to libmapnik when linking ("install_name" on OS X/rpath on Linux)', 'True'), BoolVariable('ENABLE_SONAME', 'Embed a soname in libmapnik on Linux', 'True'), EnumVariable('THREADING','Set threading support','multi', ['multi','single']), - EnumVariable('XMLPARSER','Set xml parser','libxml2', ['libxml2','ptree']), + EnumVariable('XMLPARSER','Set xml parser','ptree', ['libxml2','ptree']), BoolVariable('DEMO', 'Compile demo c++ application', 'True'), BoolVariable('PGSQL2SQLITE', 'Compile and install a utility to convert postgres tables to sqlite', 'False'), BoolVariable('SHAPEINDEX', 'Compile and install a utility to generate shapefile indexes in the custom format (.index) Mapnik supports', 'True'),