r2049: moved cmucl-compat files
[clsql.git] / clsql-base.system
index aaa4b51ef868cbba42c51a1b4d3c720cedf8fe12..51b0c5845fd4cf29b64eb5c942f7ef8db75cdc36 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql-base.system,v 1.1 2002/05/13 02:08:11 kevin Exp $
+;;;; $Id: clsql-base.system,v 1.5 2002/05/15 17:10:28 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 
 ;;; System definitions
 
-(mk:defsystem :cmucl-compat
-    :source-pathname "CL-LIBRARY:clsql;cmucl-compat;"
-    :source-extension "cl"
-    :binary-pathname "CL-LIBRARY:clsql;cmucl-compat;bin;"
-    :components ((:file "cmucl-compat")
-                (:file "loop-extension")))
-
 (mk:defsystem :clsql-base
-    :source-pathname "CL-LIBRARY:clsql;sql;"
+    :source-pathname "CL-LIBRARY:clsql;base;"
     :source-extension "cl"
-    :binary-pathname "CL-LIBRARY:clsql;sql;bin;"
-    :components ((:file "package")
+    :binary-pathname "CL-LIBRARY:clsql;base;bin;"
+    :components ((:file "cmucl-compat")
+                (:file "package")
                 (:file "classes" :depends-on ("package"))
                 (:file "conditions" :depends-on ("classes"))
-                (:file "db-interface" :depends-on ("conditions")))
-    :depends-on (:cmucl-compat)
+                (:file "db-interface" :depends-on ("conditions"))
+                (:file "initialize" :depends-on ("db-interface")))
     :finally-do
     (pushnew :clsql cl:*features*)
     )