Update of /cvsroot/python/python/dist/src In directory sc8-pr-cvs1:/tmp/cvs-serv443 Modified Files: setup.py Log Message: [Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWare; fix goofy comment indent. 2.3 bugfix candidate Index: setup.py =================================================================== RCS file: /cvsroot/python/python/dist/src/setup.py,v retrieving revision 1.174 retrieving revision 1.175 diff -C2 -d -r1.174 -r1.175 *** setup.py 21 Oct 2003 15:41:15 -0000 1.174 --- setup.py 24 Oct 2003 18:26:26 -0000 1.175 *************** *** 279,284 **** inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) ! # OSF/1 has some stuff in /usr/ccs/lib (like -ldb) ! if platform == 'osf1': lib_dirs += ['/usr/ccs/lib'] --- 279,284 ---- inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) ! # OSF/1 and Unixware have some stuff in /usr/ccs/lib (like -ldb) ! if platform in ['osf1', 'unixware7', 'openunix8']: lib_dirs += ['/usr/ccs/lib'] *************** *** 421,425 **** libraries=readline_libs) ) if platform not in ['mac']: ! # crypt module. if self.compiler.find_library_file(lib_dirs, 'crypt'): --- 421,425 ---- libraries=readline_libs) ) if platform not in ['mac']: ! # crypt module. if self.compiler.find_library_file(lib_dirs, 'crypt'):