r9252: Implement new SQL-QUERY-OBJECT class and change behavior of [select 'class]
[clsql.git] / clsql-odbc.asd
index ae49148c05f35c6dd867e63e5ef6092611834f01..6da2c6ef816d72c0c00f642463c48f4c8f10476b 100644 (file)
@@ -20,7 +20,7 @@
 (in-package #:clsql-odbc-system)
 
 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
-(defsystem :clsql-odbc
+(defsystem clsql-odbc
   :name "clsql-odbc"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
@@ -34,6 +34,9 @@
            :components
            ((:file "odbc-package")
             (:file "odbc-loader" :depends-on ("odbc-package"))
-            (:file "odbc-api" :depends-on ("odbc-loader"))
-            (:file "odbc-sql" :depends-on ("odbc-api"))))))
+            (:file "odbc-constants" :depends-on ("odbc-loader"))
+            (:file "odbc-ff-interface" :depends-on ("odbc-loader"))
+            (:file "odbc-api" :depends-on ("odbc-ff-interface" "odbc-constants"))
+            (:file "odbc-dbi" :depends-on ("odbc-api"))
+            (:file "odbc-sql" :depends-on ("odbc-dbi"))))))