X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-base.system;h=3278dd6cdb0518deac6a2668a8973f646c03427d;hb=487cdc827a06b7c99b084ed1b9b9a2278e0568d3;hp=aaa4b51ef868cbba42c51a1b4d3c720cedf8fe12;hpb=eda4b5b1e921f73dd68275709b8f5c0c2976e704;p=clsql.git diff --git a/clsql-base.system b/clsql-base.system index aaa4b51..3278dd6 100644 --- a/clsql-base.system +++ b/clsql-base.system @@ -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.9 2002/08/01 03:06:26 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -17,32 +17,26 @@ ;;;; ************************************************************************* (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 :cmucl-compat - :source-pathname "CL-LIBRARY:clsql;cmucl-compat;" +(defsystem :clsql-base + :source-pathname "cl-library:clsql-base;" :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-extension "cl" - :binary-pathname "CL-LIBRARY:clsql;sql;bin;" - :components ((:file "package") + :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"))) - :depends-on (:cmucl-compat) + (:file "db-interface" :depends-on ("conditions")) + (:file "initialize" :depends-on ("db-interface"))) :finally-do (pushnew :clsql cl:*features*) )