Ticket #41275: patch-SConstruct.diff

File patch-SConstruct.diff, 1.4 KB (added by steve+macports@…, 10 years ago)
  • SConstruct

    old new  
    140140# installation
    141141opts.Add(('PREFIX', 'Installation prefix', dirs['prefix']))
    142142opts.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', plugins))
     143opts.Add(ListVariable('SKIPPLUGINS', 'A list of plug-ins that will not be built', 'none', plugin_libs + plugins))
    144144opts.Add(ListVariable('SKIPUTILS', 'A list of utilities that will not be built', 'none', utils))
    145145opts.Add(ListVariable('SKIPMISC', 'A list of plug-ins that will not be built', 'none', misc))
    146146opts.Add(ListVariable('SKIPDOC', 'A list of doc files that will not be built/installed', 'none', doc))
     
    151151opts.Add(('TOOLSET', 'A comma-separated list of specific tools used for building instead of the default', None))
    152152opts.Add(BoolVariable('MSTOOLKIT', 'Use Microsoft Visual C++ Toolkit', 'no'))
    153153opts.Add(BoolVariable('CHMDOCS', 'Build CHM documentation, requires hhc.exe', hhc))
     154opts.Add(('CC', 'C compiler', None))
     155opts.Add(('CXX', 'C++ compiler', None))
    154156opts.Add(PathVariable('APPEND_CPPPATH', 'Additional paths to search for include files', None))
    155157opts.Add(PathVariable('APPEND_LIBPATH', 'Additional paths to search for libraries', None))
    156158opts.Add(('APPEND_CCFLAGS', 'Additional C/C++ compiler flags'))