Ticket #56750: patch-Source_setup_configure.py.diff
File patch-Source_setup_configure.py.diff, 1.3 KB (added by josephsacco, 6 years ago) |
---|
-
Source/setup_configure.py
old new 568 568 raise last_exception 569 569 570 570 # if we are using the Fink SVN then remember this 571 self.is_mac_os_x_fink = folder.startswith( '/sw/' )572 self.is_mac_os_x_darwin_ports = folder.startswith( '/opt/local/' )571 self.is_mac_os_x_fink = False 572 self.is_mac_os_x_darwin_ports = False 573 573 return folder 574 574 575 575 def find_apr_inc( self ): … … 1103 1103 1104 1104 def setupUtilities( self ): 1105 1105 self._addVar( 'CCCFLAGS', 1106 '-g '1106 '-g -O2 ' 1107 1107 '-Wall -fPIC -fexceptions -frtti ' 1108 1108 '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s ' 1109 1109 '-D%(DEBUG)s' ) … … 1131 1131 self._addVar( 'PYTHON_INC', distutils.sysconfig.get_python_inc() ) 1132 1132 1133 1133 py_cflags_list = [ 1134 '-g ',1134 '-g -O2 ', 1135 1135 '-Wall -fPIC', 1136 1136 '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s', 1137 1137 '-DPYCXX_PYTHON_2TO3 -I%(PYCXX)s -I%(PYCXX_SRC)s -I%(PYTHON_INC)s',