scons: revert testing code

This commit is contained in:
Dane Springmeyer 2009-06-08 09:23:59 +00:00
parent c03357ebc7
commit 1af2f6b77f

View file

@ -167,7 +167,6 @@ opts.AddVariables(
('JOBS', 'Set the number of parallel compilations', "1", lambda key, value, env: int(value), int),
BoolVariable('DEMO', 'Compile demo c++ application', 'False'),
BoolVariable('PGSQL2SQLITE', 'Compile and install a utility to convert postgres tables to sqlite', 'False'),
BoolVariable('OGRINDEX', 'Compile and install a utility to index ogr datasources', 'False'),
BoolVariable('COLOR_PRINT', 'Print build status information in color', 'True'),
)
# variables to pickle after successful configure step
@ -561,8 +560,8 @@ if not preconfigured:
['z', 'zlib.h', True,'C'],
['jpeg', ['stdio.h', 'jpeglib.h'], True,'C'],
['proj', 'proj_api.h', True,'C'],
['sicuuc','unicode/unistr.h',True,'C++'],
['sicudata','unicode/utypes.h' , True,'C++'],
['icuuc','unicode/unistr.h',True,'C++'],
['icudata','unicode/utypes.h' , True,'C++'],
]
# get boost version from boost headers rather than previous approach
@ -873,10 +872,6 @@ if env['DEMO']:
if env['PGSQL2SQLITE']:
SConscript('utils/pgsql2sqlite/SConscript')
# Build the ogrindex app if requested
if env['OGRINDEX']:
SConscript('utils/ogrindex/SConscript')
# Build shapeindex and remove its dependency from the LIBS
if 'boost_program_options%s' % env['BOOST_APPEND'] in env['LIBS']:
SConscript('utils/shapeindex/SConscript')
@ -905,7 +900,6 @@ for plugin in env['REQUESTED_PLUGINS']:
# Build the Python bindings
if 'python' in env['BINDINGS']:
SConscript('bindings/python/SConscript')
SConscript('utils/mapnik-config/SConscript')
# Configure fonts and if requested install the bundled DejaVu fonts
SConscript('fonts/SConscript')