Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6691
Modified Files:
configure.py
Log Message:
trying to do MacOS support
Index: configure.py
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/configure.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** configure.py 22 Aug 2004 05:48:54 -0000 1.24
--- configure.py 22 Aug 2004 08:56:54 -0000 1.25
***************
*** 132,136 ****
"/usr/include/mysql.h" ]
else:
! sys.stdout.write("ERROR: Unknown platform %s to checkMySQL()" % sys.platform )
sys.exit()
--- 132,136 ----
"/usr/include/mysql.h" ]
else:
! sys.stdout.write("ERROR: Unknown platform %s to checkMySQL()\n" % sys.platform )
sys.exit()
***************
*** 195,201 ****
PYTHONINCSEARCHPATH = [ "/usr/local/include/[Pp]ython2.3*/Python.h", \
"/usr/include/[Pp]ython2.3*/Python.h"]
!
else:
! sys.stdout.write(red("ERROR")+": Unknown platform %s to checkPython()" % sys.platform )
sys.exit()
--- 195,204 ----
PYTHONINCSEARCHPATH = [ "/usr/local/include/[Pp]ython2.3*/Python.h", \
"/usr/include/[Pp]ython2.3*/Python.h"]
! elif sys.platform == "darwin":
! PYTHONINCSEARCHPATH = [ "/System/Library/Frameworks/Python.framework/Versions/Current/Headers/Python.h" ]
! PYTHONLIBSEARCHPATH = [ ]
! PYTHONLIBSTATICSEARCHPATH = []
else:
! sys.stdout.write(red("ERROR")+": Unknown platform %s to checkPython()\n" % sys.platform )
sys.exit()
|