X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-mysql.asd;h=ec4e5efea6c9de6c7c2004dac2989c4817adb585;hb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e;hp=06d975036b9c09cfb8e51a9f19889f54f9ceb42b;hpb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;p=clsql.git diff --git a/clsql-mysql.asd b/clsql-mysql.asd index 06d9750..ec4e5ef 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -19,6 +19,35 @@ (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 ((found (some #'(lambda (dir) + (probe-file (make-pathname :directory dir + :name (component-name c) + :type "so"))) + '((:absolute "usr" "lib" "clsql"))))) + (list (if found + found + (make-pathname :name (component-name c) + :type "so" + :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 +62,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")))))