X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-oracle.asd;h=e8b9f98ee9875d9633cb265ef0aaeab5ccd742b5;hb=3e60c3fff31aec37fd8ad580049374b26a7df3f5;hp=922772111e6e202995e695bea6d72797fa2dec7c;hpb=31d1a78ee915ae4db7c042b7e5cb1ab7b5a73448;p=clsql.git diff --git a/clsql-oracle.asd b/clsql-oracle.asd index 9227721..e8b9f98 100644 --- a/clsql-oracle.asd +++ b/clsql-oracle.asd @@ -1,15 +1,24 @@ ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; This is copyrighted software. See interfaces/oracle/* files for terms. ;;;; -;;;; $Id: clsql-oracle.asd,v 1.6 2002/09/17 17:16:43 kevin Exp $ +;;;; $Id: clsql-oracle.asd,v 1.9 2002/09/25 12:44:59 kevin Exp $ (in-package :asdf) ;;; System definition +#+(or allegro lispworks cmu openmcl mcl) (defsystem :clsql-oracle - :components - ((:module :clsql-oracle + :name "cl-sql-oracle" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL Oracle Driver" + :long-description "cl-sql-oracle package provides a database driver to the Oracle database system." + + :components + ((:module :db-oracle :components ((:file "oracle-package") (:file "oracle-loader" :depends-on ("oracle-package")) @@ -20,8 +29,9 @@ (:file "oracle-objects" :depends-on ("oracle-sql"))))) :depends-on (:clsql-base)) +#+(or allegro lispworks cmu openmcl mcl) (defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql-oracle)))) + (s (eql (find-system :clsql-oracle)))) "cl")