X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-aodbc.system;h=315ea62d403c631ae46302a035f4301e502b9c95;hb=9f51f67ab4f038fef0cc9f84bb9db2f4072d8a9e;hp=a540a70e2a47b32d2e34843fb36d9106c080c757;hpb=1a44400b42310a985f1a27ea8f53da84716955e1;p=clsql.git diff --git a/clsql-aodbc.system b/clsql-aodbc.system index a540a70..315ea62 100644 --- a/clsql-aodbc.system +++ b/clsql-aodbc.system @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-aodbc.system,v 1.2 2002/03/29 08:23:38 kevin Exp $ +;;;; $Id: clsql-aodbc.system,v 1.11 2002/09/06 10:56:13 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,14 +20,13 @@ (in-package :make) (defsystem :clsql-aodbc - :source-pathname "CLSQL:interfaces;aodbc;" - :source-extension "cl" - :binary-pathname "CLSQL:interfaces;aodbc;bin;" - :components ((:file "aodbc-package") - (:file "aodbc-sql" :depends-on ("aodbc-package"))) - :depends-on (:clsql) - :finally-do - (when (clsql-sys:database-type-library-loaded :aodbc) - (clsql-sys:initialize-database-type :database-type :aodbc))) + :source-pathname #.(format nil "~A:clsql-aodbc;" + #+common-lisp-controller "cl-library" + #-common-lisp-controller "clsql") + + :source-extension "cl" + :components ((:file "aodbc-package") + (:file "aodbc-sql" :depends-on ("aodbc-package"))) + :depends-on (:clsql-base)) + -