Ticket #3257: patch-setupext.py.diff
File patch-setupext.py.diff, 827 bytes (added by cmalek@…, 19 years ago) |
---|
-
setupext.py
old new 39 39 'linux' : ['/usr/local', '/usr',], 40 40 # Charles Moad recommends not putting in /usr/X11R6 for darwin 41 41 # because freetype in this dir is too old for mpl 42 'darwin' : [' /sw/lib/freetype219', '/usr/local', '/usr', '/sw'],42 'darwin' : ['@@DPORTS_PREFIX@@', '/usr'], 43 43 'freebsd4' : ['/usr/local', '/usr'], 44 44 'freebsd5' : ['/usr/local', '/usr'], 45 45 'freebsd6' : ['/usr/local', '/usr'], … … 97 97 libdirs = [os.path.join(p, 'lib') for p in basedir[sys.platform] 98 98 if os.path.exists(p)] 99 99 module.include_dirs.extend(incdirs) 100 module.include_dirs.extend(['@@DPORTS_PREFIX@@/include/python2.4']) 100 101 module.library_dirs.extend(libdirs) 101 102 102 103