X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-mysql.asd;h=12b8479dbec78c9c1a4efa647b78d6096596555a;hp=ec4e5efea6c9de6c7c2004dac2989c4817adb585;hb=da9282a5c0ce927c613f1706f1c51796c75e16e4;hpb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e diff --git a/clsql-mysql.asd b/clsql-mysql.asd index ec4e5ef..12b8479 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -7,9 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id$ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License @@ -19,38 +17,60 @@ (defpackage #:clsql-mysql-system (:use #:asdf #:cl)) (in-package #:clsql-mysql-system) -(defvar *library-file-dir* (append (pathname-directory *load-truename*) - (list "db-mysql"))) +(eval-when (:compile-toplevel :load-toplevel :execute) + (unless (find-package 'uffi) + (asdf:operate 'asdf:load-op 'uffi))) + +(defvar *library-file-dir* + (merge-pathnames "db-mysql/" + (make-pathname :name nil :type nil + :defaults *load-truename*))) (defclass clsql-mysql-source-file (c-source-file) ()) (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"))) - '((:absolute "usr" "lib" "clsql"))))) + :type library-file-type))) + '((:absolute "usr" "lib" "clsql"))))) (list (if found found (make-pathname :name (component-name c) - :type "so" - :directory *library-file-dir*))))) + :type library-file-type + :defaults *library-file-dir*))))) (defmethod perform ((o load-op) (c clsql-mysql-source-file)) - nil) ;;; library will be loaded by a loader file + t) + +(defmethod operation-done-p ((o load-op) (c clsql-mysql-source-file)) + (and (find-package '#:mysql) + (symbol-function (intern (symbol-name '#:mysql-get-client-info) + (find-package '#:mysql))) + t)) (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))) + (unless (operation-done-p o c) + #-(or win32 win64 windows mswindows) + (unless (zerop (run-shell-command + #-freebsd "cd ~A; make" + #+freebsd "cd ~A; gmake" + (namestring *library-file-dir*))) + (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/clsql_mysql.so") t) + (let ((lib (make-pathname :defaults (component-pathname c) + :type (uffi:default-foreign-library-type)))) + (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 " @@ -59,13 +79,14 @@ :description "Common Lisp SQL MySQL Driver" :long-description "cl-sql-mysql package provides a database driver to the MySQL database system." + :depends-on (clsql 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-package") + (: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-usql" :depends-on ("mysql-sql"))))) - :depends-on (:uffi :clsql-base :clsql-uffi)) + (:file "mysql-objects" :depends-on ("mysql-sql"))))))