[python-on-lisp-cvs] r6 - trunk/pythononlisp

agallagher at common-lisp.net agallagher at common-lisp.net
Fri Nov 24 03:10:44 UTC 2006


Author: agallagher
Date: Thu Nov 23 22:10:44 2006
New Revision: 6

Modified:
   trunk/pythononlisp/pythononlisp.lisp
Log:
added strings for supporting python2.5

Modified: trunk/pythononlisp/pythononlisp.lisp
==============================================================================
--- trunk/pythononlisp/pythononlisp.lisp	(original)
+++ trunk/pythononlisp/pythononlisp.lisp	Thu Nov 23 22:10:44 2006
@@ -28,8 +28,8 @@
 
 (cffi:define-foreign-library python-library
   (:darwin (:framework "Python"))
-  (:unix (:or "libpython2.4.so.1.0" "libpython2.3.so.1.0"))
-  (:windows (:or "python24.dll" "python23.dll") )
+  (:unix (:or "libpython2.5.so.1.0" "libpython2.4.so.1.0" "libpython2.3.so.1.0"))
+  (:windows (:or "python25.dll" "python24.dll" "python23.dll") )
   (t (:default "libpython")))
 
 (defmacro str-format (&rest body)



More information about the Python-on-lisp-cvs mailing list