at master 1.4 kB view raw
1diff -rc Python-2.4.4-orig/setup.py Python-2.4.4/setup.py 2*** Python-2.4.4-orig/setup.py 2006-10-08 19:41:25.000000000 +0200 3--- Python-2.4.4/setup.py 2007-05-27 16:04:54.000000000 +0200 4*************** 5*** 279,288 **** 6 # Check for AtheOS which has libraries in non-standard locations 7 if platform == 'atheos': 8 lib_dirs += ['/system/libs', '/atheos/autolnk/lib'] 9- lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep) 10 inc_dirs += ['/system/include', '/atheos/autolnk/include'] 11- inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) 12 13 # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb) 14 if platform in ['osf1', 'unixware7', 'openunix8']: 15 lib_dirs += ['/usr/ccs/lib'] 16--- 279,289 ---- 17 # Check for AtheOS which has libraries in non-standard locations 18 if platform == 'atheos': 19 lib_dirs += ['/system/libs', '/atheos/autolnk/lib'] 20 inc_dirs += ['/system/include', '/atheos/autolnk/include'] 21 22+ lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep) 23+ inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) 24+ 25 # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb) 26 if platform in ['osf1', 'unixware7', 'openunix8']: 27 lib_dirs += ['/usr/ccs/lib']