X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-uffi.asd;h=49ae32d440e67789a9c628ef4920881755d6e97f;hb=db9892632e6eb7869aea7a94c16b523a82de1501;hp=42356496f8e4b7e8b6ffc6cb288e1450d94e1d56;hpb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e;p=clsql.git diff --git a/clsql-uffi.asd b/clsql-uffi.asd index 4235649..49ae32d 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -53,14 +53,25 @@ (defmethod perform ((o load-op) (c clsql-uffi-source-file)) nil) ;;; library will be loaded by a loader file +(defmethod operation-done-p ((o load-op) (c clsql-uffi-source-file)) + nil) + (defmethod perform ((o compile-op) (c clsql-uffi-source-file)) + #-(or win32 mswindows) (unless (zerop (run-shell-command - "cd ~A; make" + #-freebsd "cd ~A; make" + #+freebsd "cd ~A; gmake" (namestring (make-pathname :name nil :type nil :directory *library-file-dir*)))) (error 'operation-error :component c :operation o))) +(defmethod operation-done-p ((o compile-op) (c clsql-uffi-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)))))) + #+(or allegro lispworks cmu sbcl openmcl mcl scl) (defsystem clsql-uffi :name "cl-sql-base" @@ -70,7 +81,7 @@ :description "Common UFFI Helper functions for Common Lisp SQL Interface Library" :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package." - :depends-on (:uffi :clsql-base) + :depends-on (uffi clsql-base) :components ((:module :uffi