X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-postgresql.system;h=d96a0f555fa1ec1095bb48262ced3a7947dbcafa;hb=21a11d58a1d421db0c53a063178dd2bc02663a15;hp=c956d76c4c1a39c3749d3529a62c77773d3aaca6;hpb=8213ff48f5362c3d4792444c929f50bd128bd044;p=clsql.git diff --git a/clsql-postgresql.system b/clsql-postgresql.system index c956d76..d96a0f5 100644 --- a/clsql-postgresql.system +++ b/clsql-postgresql.system @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-postgresql.system,v 1.1 2002/03/23 14:04:49 kevin Exp $ +;;;; $Id: clsql-postgresql.system,v 1.3 2002/03/24 04:01:26 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -26,6 +26,11 @@ :source-extension "cl" :components ((:file "postgresql-package") (:file "postgresql-loader" :depends-on ("postgresql-package")) - (:file "postgresql-uffi" :depends-on ("postgresql-loader")) - (:file "postgresql-sql" :depends-on ("postgresql-uffi"))) - :depends-on (:uffi :clsql)) + (:file "postgresql-api" :depends-on ("postgresql-loader")) + (:file "postgresql-sql" :depends-on ("postgresql-api"))) + :depends-on (:uffi :clsql) + :finally-do + (when (clsql-sys:database-type-library-loaded :postgresql) + (clsql-sys:initialize-database-type :database-type :postgresql) + (pushnew :postgresql cl:*features*))) +