X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-uffi.asd;h=51eb3f1239900ee8e0fb857f82cc2d49f2ff616a;hp=e3aec75c16c1d076fc1bb40cba90aa01eab33911;hb=57475c5eb1b1bb3e63b05f1131ff97c764f87ebe;hpb=2a4b21bbfe9c23a4c259aea40c1ffd608f59a136 diff --git a/clsql-uffi.asd b/clsql-uffi.asd index e3aec75..51eb3f1 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -70,13 +70,12 @@ (error 'operation-error :component c :operation o)))) (defmethod operation-done-p ((o compile-op) (c clsql-uffi-source-file)) - (or (and (probe-file #p"/usr/lib/clsql/uffi.so") t) + (or (and (probe-file #p"/usr/lib/clsql/clsql_uffi.so") t) (let ((lib (make-pathname :defaults (component-pathname c) :type (uffi:default-foreign-library-type)))) - (and (probe-file lib) + (and (probe-file lib) (probe-file (component-pathname c)) (> (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" :author "Kevin M. Rosenberg "