From a8423428e8de239db911389b14526af8362d3fa3 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sat, 21 Aug 2010 04:22:36 +0000 Subject: [PATCH] scons: don't build cairo rendering backend unless requested (as cairo is not being actively maintained at this point in trunk) --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index eb7782eda..8a2807f01 100644 --- a/SConstruct +++ b/SConstruct @@ -295,7 +295,7 @@ opts.AddVariables( # Variables for optional dependencies # Note: cairo, cairomm, and pycairo all optional but configured automatically through pkg-config # Therefore, we use a single boolean for whether to attempt to build cairo support. - BoolVariable('CAIRO', 'Attempt to build with Cairo rendering support', 'True'), + BoolVariable('CAIRO', 'Attempt to build with Cairo rendering support', 'False'), ('GDAL_CONFIG', 'The path to the gdal-config executable for finding gdal and ogr details.', 'gdal-config'), ('PG_CONFIG', 'The path to the pg_config executable.', 'pg_config'), PathVariable('OCCI_INCLUDES', 'Search path for OCCI include files', '/usr/lib/oracle/10.2.0.3/client/include', PathVariable.PathAccept),