Ticket #41275: patch-SConstruct.diff
File patch-SConstruct.diff, 1.4 KB (added by steve+macports@…, 10 years ago) |
---|
-
SConstruct
old new 140 140 # installation 141 141 opts.Add(('PREFIX', 'Installation prefix', dirs['prefix'])) 142 142 opts.Add(ListVariable('SKIPSTUBS', 'A list of stubs that will not be built', 'none', stubs)) 143 opts.Add(ListVariable('SKIPPLUGINS', 'A list of plug-ins that will not be built', 'none', plugin s))143 opts.Add(ListVariable('SKIPPLUGINS', 'A list of plug-ins that will not be built', 'none', plugin_libs + plugins)) 144 144 opts.Add(ListVariable('SKIPUTILS', 'A list of utilities that will not be built', 'none', utils)) 145 145 opts.Add(ListVariable('SKIPMISC', 'A list of plug-ins that will not be built', 'none', misc)) 146 146 opts.Add(ListVariable('SKIPDOC', 'A list of doc files that will not be built/installed', 'none', doc)) … … 151 151 opts.Add(('TOOLSET', 'A comma-separated list of specific tools used for building instead of the default', None)) 152 152 opts.Add(BoolVariable('MSTOOLKIT', 'Use Microsoft Visual C++ Toolkit', 'no')) 153 153 opts.Add(BoolVariable('CHMDOCS', 'Build CHM documentation, requires hhc.exe', hhc)) 154 opts.Add(('CC', 'C compiler', None)) 155 opts.Add(('CXX', 'C++ compiler', None)) 154 156 opts.Add(PathVariable('APPEND_CPPPATH', 'Additional paths to search for include files', None)) 155 157 opts.Add(PathVariable('APPEND_LIBPATH', 'Additional paths to search for libraries', None)) 156 158 opts.Add(('APPEND_CCFLAGS', 'Additional C/C++ compiler flags'))