--- /var/tmp/portage/mapnik-0.3.0/work/mapnik-0.3.0/SConstruct 2006-05-22 21:42:06.000000000 +0200 +++ /var/tmp/portage/mapnik-0.3.0/work/mapnik-0.3.0/SConstruct 2006-07-16 13:34:15.000000000 +0200 @@ -44,6 +44,7 @@ opts.Add('DEBUG', 'Compile a debug version of mapnik', '') env = Environment(ENV=os.environ, options=opts) +env.SConsignFile(".sconsign") Help(opts.GenerateHelpText(env)) @@ -133,9 +134,9 @@ # Setup the c++ args for our own codebase if env['DEBUG']: - env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG') + env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -fno-inline -g -pthread -DDEBUG') else: - env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O3 -finline-functions -Wno-inline -pthread -DNDEBUG') + env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -finline-functions -Wno-inline -pthread -DNDEBUG') # Build agg first, doesn't need anything special