X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-base.system;h=8a1315227d69749bf0bbf6f569df04c00008ea92;hb=f5b810d17ae9c5898222b179869912f9736b97b2;hp=aaa4b51ef868cbba42c51a1b4d3c720cedf8fe12;hpb=eda4b5b1e921f73dd68275709b8f5c0c2976e704;p=clsql.git diff --git a/clsql-base.system b/clsql-base.system index aaa4b51..8a13152 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.4 2002/05/14 16:23:37 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -27,22 +27,15 @@ ;;; 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;" + :binary-pathname "CL-LIBRARY:clsql;base;bin;" :components ((: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*) )