X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-mysql.asd;h=2247697282d36de124efd5710d2a0141850973a4;hp=b20b4a0f1d7555a867461a663697530d91c74d9e;hb=bf641c516d77330e150d0f1b07fd02dceaae3ef4;hpb=8a8ee2d7d791b7a3efaed06420802a925d16fca3 diff --git a/clsql-mysql.asd b/clsql-mysql.asd index b20b4a0..2247697 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"))) @@ -37,7 +37,7 @@ (probe-file (make-pathname :directory dir :name (component-name c) :type library-file-type))) - '((:absolute "usr" "lib" "clsql"))))) + '((:absolute "usr" "lib" "clsql"))))) (list (if found found (make-pathname :name (component-name c) @@ -50,11 +50,11 @@ (defmethod operation-done-p ((o load-op) (c clsql-mysql-source-file)) (and (symbol-function (intern (symbol-name '#:mysql-get-client-info) (find-package '#:mysql))) - t)) + t)) (defmethod perform ((o compile-op) (c clsql-mysql-source-file)) (unless (operation-done-p o c) - #-(or win32 mswindows) + #-(or win32 win64 windows mswindows) (unless (zerop (run-shell-command #-freebsd "cd ~A; make" #+freebsd "cd ~A; gmake" @@ -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 " @@ -86,8 +85,9 @@ ((:module :db-mysql :components ((:file "mysql-package") - (:clsql-mysql-source-file "mysql" :depends-on ("mysql-package")) - (:file "mysql-loader" :depends-on ("mysql-package" "mysql")) + (:clsql-mysql-source-file "clsql_mysql" :depends-on ("mysql-package")) + (:file "mysql-loader" :depends-on ("mysql-package" "clsql_mysql")) (:file "mysql-client-info" :depends-on ("mysql-loader")) (:file "mysql-api" :depends-on ("mysql-client-info")) - (:file "mysql-sql" :depends-on ("mysql-api")))))) + (:file "mysql-sql" :depends-on ("mysql-api")) + (:file "mysql-objects" :depends-on ("mysql-sql"))))))