Ticket #12389: patch-setupext.py.diff
File patch-setupext.py.diff, 834 bytes (added by mdroe@…, 17 years ago) |
---|
-
setupext.py
old new 48 48 'linux2' : ['/usr/local', '/usr',], 49 49 'linux' : ['/usr/local', '/usr',], 50 50 'cygwin' : ['/usr/local', '/usr',], 51 'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local', 52 '/usr', '/sw'], 51 'darwin' : ['@@DPORTS_PREFIX@@', '/usr'], 53 52 'freebsd4' : ['/usr/local', '/usr'], 54 53 'freebsd5' : ['/usr/local', '/usr'], 55 54 'freebsd6' : ['/usr/local', '/usr'], … … 132 131 [os.path.join(p, 'lib64') for p in basedir[sys.platform] ] ) 133 132 134 133 module.include_dirs.extend(incdirs) 134 module.include_dirs.extend(['@@DPORTS_PREFIX@@/include/python2.5']) 135 135 module.include_dirs.append('.') 136 136 module.library_dirs.extend(libdirs) 137 137