X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-mysql.asd;h=0ac546d23b7616eef3080d2d1c4d517b67b0e7dd;hp=fe661dc84972765f4951491e4272db5a09538259;hb=26cfa48009c72652e0ba8ce9aed8c53216e9a3d3;hpb=606f6b3eb642523512d12927ff83120b688e8bf9 diff --git a/clsql-mysql.asd b/clsql-mysql.asd index fe661dc..0ac546d 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -20,8 +20,8 @@ (in-package #:clsql-mysql-system) (eval-when (:compile-toplevel :load-toplevel :execute) - #+common-lisp-controller (require 'uffi) - #-common-lisp-controller (asdf:operate 'asdf:load-op 'uffi)) + (unless (find-package 'uffi) + (asdf:operate 'asdf:load-op 'uffi))) (defvar *library-file-dir* (append (pathname-directory *load-truename*) (list "db-mysql"))) @@ -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 "