X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-mysql.asd;h=9cb9739f6cf69c5610791f3491673d28fa88e75a;hp=ec4e5efea6c9de6c7c2004dac2989c4817adb585;hb=c4ffac239e4910bff542dadf3212ad95803af64e;hpb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e diff --git a/clsql-mysql.asd b/clsql-mysql.asd index ec4e5ef..9cb9739 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -19,6 +19,10 @@ (defpackage #:clsql-mysql-system (:use #:asdf #:cl)) (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)) + (defvar *library-file-dir* (append (pathname-directory *load-truename*) (list "db-mysql"))) @@ -26,20 +30,26 @@ ()) (defmethod output-files ((o compile-op) (c clsql-mysql-source-file)) - (let ((found (some #'(lambda (dir) + (let* ((library-file-type + (funcall (intern (symbol-name'#:default-foreign-library-type) + (symbol-name '#:uffi)))) + (found (some #'(lambda (dir) (probe-file (make-pathname :directory dir :name (component-name c) - :type "so"))) + :type library-file-type))) '((:absolute "usr" "lib" "clsql"))))) (list (if found found (make-pathname :name (component-name c) - :type "so" + :type library-file-type :directory *library-file-dir*))))) (defmethod perform ((o load-op) (c clsql-mysql-source-file)) nil) ;;; library will be loaded by a loader file +(defmethod operation-done-p ((o load-op) (c clsql-mysql-source-file)) + nil) + (defmethod perform ((o compile-op) (c clsql-mysql-source-file)) (unless (zerop (run-shell-command "cd ~A; make" @@ -48,6 +58,12 @@ :directory *library-file-dir*)))) (error 'operation-error :component c :operation o))) +(defmethod operation-done-p ((o compile-op) (c clsql-mysql-source-file)) + (let ((lib (make-pathname :defaults (component-pathname c) + :type (uffi:default-foreign-library-type)))) + (and (probe-file lib) + (> (file-write-date lib) (file-write-date (component-pathname c)))))) + ;;; System definition #+(or allegro lispworks cmu sbcl openmcl mcl scl) @@ -59,13 +75,13 @@ :description "Common Lisp SQL MySQL Driver" :long-description "cl-sql-mysql package provides a database driver to the MySQL database system." + :depends-on (uffi clsql-base clsql-uffi) :components ((:module :db-mysql :components ((:clsql-mysql-source-file "mysql") (:file "mysql-package") (:file "mysql-loader" :depends-on ("mysql-package" "mysql")) - (:file "mysql-api" :depends-on ("mysql-loader")) - (:file "mysql-sql" :depends-on ("mysql-api")) - (:file "mysql-usql" :depends-on ("mysql-sql"))))) - :depends-on (:uffi :clsql-base :clsql-uffi)) + (:file "mysql-client-info" :depends-on ("mysql-loader")) + (:file "mysql-api" :depends-on ("mysql-client-info")) + (:file "mysql-sql" :depends-on ("mysql-api"))))))