r10845: 26 Nov 2005 Kevin Rosenberg <kevin@rosenberg.net>
[clsql.git] / clsql-mysql.asd
index cbcd9141d17532c262fdc7e0d3574f182751ea8c..a176f85d4fa8bc0d0c6bd1db09e50db10f2c48d7 100644 (file)
       (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/mysql.so") t)
+  (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)
+       (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 <kmr@debian.org>"
@@ -86,8 +85,8 @@
   ((:module :db-mysql
            :components
            ((:file "mysql-package")
-            (:clsql-mysql-source-file "mysql" :depends-on ("mysql-package"))
-            (:file "mysql-loader" :depends-on ("mysql-package" "mysql"))
+            (: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"))