diff -ru ../../pysvn-1.8.0.FCS/Source/setup_configure.py ./setup_configure.py --- ../../pysvn-1.8.0.FCS/Source/setup_configure.py 2015-08-18 10:28:19.000000000 -0700 +++ ./setup_configure.py 2015-11-22 17:09:15.000000000 -0800 @@ -527,8 +527,8 @@ self._find_paths_svn_lib, self.get_lib_name_for_platform( 'libsvn_client-1' ) ) # if we are using the Fink SVN then remember this - self.is_mac_os_x_fink = folder.startswith( '/sw/' ) - self.is_mac_os_x_darwin_ports = folder.startswith( '/opt/local/' ) + self.is_mac_os_x_fink = False + self.is_mac_os_x_darwin_ports = False return folder def find_apr_inc( self ): @@ -1032,7 +1032,7 @@ def setupUtilities( self ): self._addVar( 'CCCFLAGS', - '-g ' + '-g -O2 ' '-Wall -fPIC -fexceptions -frtti ' '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s ' '-D%(DEBUG)s' ) @@ -1048,7 +1048,7 @@ self._addVar( 'PYTHON_INC', distutils.sysconfig.get_python_inc() ) py_cflags_list = [ - '-g', + '-g -O2', '-Wall -fPIC -fexceptions -frtti', '-I. -I%(APR_INC)s -I%(APU_INC)s -I%(SVN_INC)s', '-DPYCXX_PYTHON_2TO3 -I%(PYCXX)s -I%(PYCXX_SRC)s -I%(PYTHON_INC)s',