Ticket #56750: patch-Source_setup_configure.py.diff

File patch-Source_setup_configure.py.diff, 1.3 KB (added by josephsacco, 6 years ago)

patch-Source_setup_configure.py.diff 24July2018

  • Source/setup_configure.py

    old new  
    568568            raise last_exception
    569569
    570570        # 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
    573573        return folder
    574574
    575575    def find_apr_inc( self ):
     
    11031103
    11041104    def setupUtilities( self ):
    11051105        self._addVar( 'CCCFLAGS',
    1106                                         '-g '
     1106                                        '-g -O2 '
    11071107                                        '-Wall -fPIC -fexceptions -frtti '
    11081108                                        '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s '
    11091109                                        '-D%(DEBUG)s' )
     
    11311131        self._addVar( 'PYTHON_INC',         distutils.sysconfig.get_python_inc() )
    11321132
    11331133        py_cflags_list = [
    1134                     '-g',
     1134                    '-g -O2 ',
    11351135                    '-Wall -fPIC',
    11361136                    '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s',
    11371137                    '-DPYCXX_PYTHON_2TO3 -I%(PYCXX)s -I%(PYCXX_SRC)s -I%(PYTHON_INC)s',