X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=67e9b7f8dcd24a92ab43d9de18bfc08506f5f289;hp=162520037dcc8fa2dff25e74a842302304dc96eb;hb=0140f390dc26d640b2289c212da82e5b3f51106f;hpb=31d1a78ee915ae4db7c042b7e5cb1ab7b5a73448 diff --git a/clsql.asd b/clsql.asd index 1625200..67e9b7f 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.7 2002/09/17 17:16:43 kevin Exp $ +;;;; $Id: clsql.asd,v 1.14 2002/10/14 04:09:02 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,16 @@ (in-package :asdf) -(defsystem clsql +#+(or allegro lispworks cmu sbcl openmcl mcl) +(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 @@ -34,6 +43,8 @@ :depends-on (:clsql-base) ) -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql)))) - "cl") +#+(or allegro lispworks cmu sbcl openmcl mcl) +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql)))) + (pushnew :clsql cl:*features*))) +