X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-mysql.asd;h=0ac546d23b7616eef3080d2d1c4d517b67b0e7dd;hp=cbcd9141d17532c262fdc7e0d3574f182751ea8c;hb=26cfa48009c72652e0ba8ce9aed8c53216e9a3d3;hpb=2a4b21bbfe9c23a4c259aea40c1ffd608f59a136 diff --git a/clsql-mysql.asd b/clsql-mysql.asd index cbcd914..0ac546d 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -64,15 +64,14 @@ (error 'operation-error :component c :operation o)))) (defmethod operation-done-p ((o compile-op) (c clsql-mysql-source-file)) - (or (and (probe-file #p"/usr/lib/clsql/mysql.so") t) + (or (and (probe-file #p"/usr/lib/clsql/clsql_mysql.so") t) (let ((lib (make-pathname :defaults (component-pathname c) :type (uffi:default-foreign-library-type)))) - (and (probe-file lib) + (and (probe-file lib) (probe-file (component-pathname c)) (> (file-write-date lib) (file-write-date (component-pathname c))))))) ;;; System definition -#+(or allegro lispworks cmu sbcl openmcl mcl scl) (defsystem :clsql-mysql :name "cl-sql-mysql" :author "Kevin M. Rosenberg "