X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-mysql.asd;h=815709e6a20773e19789990347bb17e3019b627b;hb=bf8d709a2b29f30ceaa6a48b842b4b16a8c99b13;hp=06d975036b9c09cfb8e51a9f19889f54f9ceb42b;hpb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;p=clsql.git diff --git a/clsql-mysql.asd b/clsql-mysql.asd index 06d9750..815709e 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -19,6 +19,38 @@ (defpackage #:clsql-mysql-system (:use #:asdf #:cl)) (in-package #:clsql-mysql-system) +(defvar *library-file-dir* (append (pathname-directory *load-truename*) + (list "db-mysql"))) + +(defclass clsql-mysql-source-file (c-source-file) + ()) + +(defmethod output-files ((o compile-op) (c clsql-mysql-source-file)) + (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 library-file-type))) + '((:absolute "usr" "lib" "clsql"))))) + (list (if found + found + (make-pathname :name (component-name c) + :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 perform ((o compile-op) (c clsql-mysql-source-file)) + (unless (zerop (run-shell-command + "cd ~A; make" + (namestring (make-pathname :name nil + :type nil + :directory *library-file-dir*)))) + (error 'operation-error :component c :operation o))) + ;;; System definition #+(or allegro lispworks cmu sbcl openmcl mcl scl) @@ -33,8 +65,9 @@ :components ((:module :db-mysql :components - ((:file "mysql-package") - (:file "mysql-loader" :depends-on ("mysql-package")) + ((: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")))))