Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 140599 | Differences between
and this patch

Collapse All | Expand All

(-)SConstruct (-2 / +3 lines)
Lines 54-59 Link Here
54
opts.Add('BIDI', 'BIDI support', '')
54
opts.Add('BIDI', 'BIDI support', '')
55
55
56
env = Environment(ENV=os.environ, options=opts)
56
env = Environment(ENV=os.environ, options=opts)
57
env.SConsignFile(".sconsign")
57
env['LIBDIR_SCHEMA'] = LIBDIR_SCHEMA
58
env['LIBDIR_SCHEMA'] = LIBDIR_SCHEMA
58
59
59
Help(opts.GenerateHelpText(env))
60
Help(opts.GenerateHelpText(env))
Lines 165-173 Link Here
165
# Setup the c++ args for our own codebase
166
# Setup the c++ args for our own codebase
166
167
167
if env['DEBUG']:
168
if env['DEBUG']:
168
    env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG -DMAPNIK_DEBUG -DBOOST_PROPERTY_TREE_XML_PARSER_TINYXML -DTIXML_USE_STL')
169
    env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -fno-inline -g -pthread -DDEBUG -DMAPNIK_DEBUG -DBOOST_PROPERTY_TREE_XML_PARSER_TINYXML -DTIXML_USE_STL')
169
else:
170
else:
170
    env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -O3 -finline-functions -Wno-inline -pthread -DNDEBUG -DBOOST_PROPERTY_TREE_XML_PARSER_TINYXML -DTIXML_USE_STL')
171
    env.Append(CXXFLAGS = '-ansi -Wall -ftemplate-depth-100 -finline-functions -Wno-inline -pthread -DNDEBUG -DBOOST_PROPERTY_TREE_XML_PARSER_TINYXML -DTIXML_USE_STL')
171
172
172
# Build agg first, doesn't need anything special
173
# Build agg first, doesn't need anything special
173
174

Return to bug 140599