X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=06607abda4e2a6112bba8cb3bf40bcdd1e1689b2;hb=63a47d658e3cbc2095d2c7ecb33e34c152de4955;hp=2890db90e0f67c83b3d0196f440408fca124d1d9;hpb=2434b58ef00a7f6c5915c86b25a891c4adda79e4;p=clsql.git diff --git a/clsql.asd b/clsql.asd index 2890db9..06607ab 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.8 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id: clsql.asd,v 1.11 2002/09/20 06:37:39 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,15 @@ (in-package :asdf) -(defsystem clsql +(defsystem :clsql + :name "cl-sql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL Interface Library" + :long-description "cl-sql package provides the high-level interface for the CLSQL system." + :perform (load-op :after (op clsql) (pushnew :clsql cl:*features*)) :components @@ -35,5 +43,11 @@ ) (defmethod source-file-type ((c cl-source-file) -e (s (eql (find-system :clsql)))) + (s (eql (find-system :clsql)))) "cl") + + +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql)))) + (pushnew :clsql cl:*features*))) +