r2284: Autocommit for make-debian
[clsql.git] / clsql-base.system
index 51b0c5845fd4cf29b64eb5c942f7ef8db75cdc36..3278dd6cdb0518deac6a2668a8973f646c03427d 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql-base.system,v 1.5 2002/05/15 17:10:28 kevin Exp $
+;;;; $Id: clsql-base.system,v 1.9 2002/08/01 03:06:26 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; *************************************************************************
 
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package :make)
 
 ;; For use with non-Debian installations
 (let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl"
                                      :defaults *load-truename*)))
   (when (probe-file helper-pathname)
-    (load helper-pathname)))
+      (load helper-pathname)))
 
 ;;; System definitions
 
-(mk:defsystem :clsql-base
-    :source-pathname "CL-LIBRARY:clsql;base;"
+(defsystem :clsql-base
+    :source-pathname "cl-library:clsql-base;"
     :source-extension "cl"
-    :binary-pathname "CL-LIBRARY:clsql;base;bin;"
-    :components ((:file "cmucl-compat")
+     :components ((:file "cmucl-compat")
                 (:file "package")
+                (:file "utils" :depends-on ("package"))
                 (:file "classes" :depends-on ("package"))
                 (:file "conditions" :depends-on ("classes"))
                 (:file "db-interface" :depends-on ("conditions"))