[wpdev-commits] wolfpack configure.py,1.31,1.32
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-08-23 22:25:38
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31698 Modified Files: configure.py Log Message: Ops Index: configure.py =================================================================== RCS file: /cvsroot/wpdev/wolfpack/configure.py,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** configure.py 23 Aug 2004 21:05:36 -0000 1.31 --- configure.py 23 Aug 2004 22:25:26 -0000 1.32 *************** *** 164,168 **** return True ! def checkPython( options, lookForHeaders = True, lookForLib = True ): PYTHONINCSEARCHPATH = [ distutils.sysconfig.get_python_inc() + os.path.sep + "Python.h" ] if distutils.sysconfig.get_config_vars().has_key("DESTSHARED"): --- 164,168 ---- return True ! def checkPython( options, lookForHeaders, lookForLib ): PYTHONINCSEARCHPATH = [ distutils.sysconfig.get_python_inc() + os.path.sep + "Python.h" ] if distutils.sysconfig.get_config_vars().has_key("DESTSHARED"): *************** *** 237,263 **** sys.stdout.write(yellow("Warning:") + " Wolfpack support for big endian systems is completely experimental and unlikey to work\n" ) ! if lookForLib: ! sys.stdout.write( "Searching for Python library... " ) ! global py_libpath ! global py_libfile ! py_libfile, py_libpath = findFile( PYTHONLIBSEARCHPATH ) ! if ( py_libfile ): ! sys.stdout.write("%s\n" % os.path.join( py_libpath, py_libfile ) ) ! else: ! sys.stdout.write(red("Not Found!") + "\n") ! sys.exit() ! if lookForHeaders: ! global py_incpath ! py_incfile = None ! sys.stdout.write( "Searching for Python includes... " ) ! py_incfile, py_incpath = findFile( PYTHONINCSEARCHPATH ) ! if ( py_incfile ): ! sys.stdout.write( "%s\n" % py_incpath ) ! else: ! sys.stdout.write(red("Not Found!") + "\n") ! sys.exit() return True --- 237,263 ---- sys.stdout.write(yellow("Warning:") + " Wolfpack support for big endian systems is completely experimental and unlikey to work\n" ) ! if lookForLib: ! sys.stdout.write( "Searching for Python library... " ) ! global py_libpath ! global py_libfile ! py_libfile, py_libpath = findFile( PYTHONLIBSEARCHPATH ) ! if ( py_libfile ): ! sys.stdout.write("%s\n" % os.path.join( py_libpath, py_libfile ) ) ! else: ! sys.stdout.write(red("Not Found!") + "\n") ! sys.exit() ! if lookForHeaders: ! global py_incpath ! py_incfile = None ! sys.stdout.write( "Searching for Python includes... " ) ! py_incfile, py_incpath = findFile( PYTHONINCSEARCHPATH ) ! if ( py_incfile ): ! sys.stdout.write( "%s\n" % py_incpath ) ! else: ! sys.stdout.write(red("Not Found!") + "\n") ! sys.exit() return True |