X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-base.system;h=51b0c5845fd4cf29b64eb5c942f7ef8db75cdc36;hb=27635f61adae5a49f9986762acf13daa0437826b;hp=aaa4b51ef868cbba42c51a1b4d3c720cedf8fe12;hpb=eda4b5b1e921f73dd68275709b8f5c0c2976e704;p=clsql.git diff --git a/clsql-base.system b/clsql-base.system index aaa4b51..51b0c58 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.5 2002/05/15 17:10:28 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -27,22 +27,16 @@ ;;; 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*) )