X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=58d028981bb8bf34f11675146d69df28d62a186c;hb=9d071d3a1c2b8bbd91261908a424ea74472a3bb5;hp=c138809f311f55bacae0c70c0c6b18e744d74bf2;hpb=28c3e183ebe9c7e453a3af16352ebe3d9811ed20;p=uffi.git diff --git a/uffi.asd b/uffi.asd index c138809..58d0289 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.11 2002/09/16 18:07:22 kevin Exp $ +;;;; $Id: uffi.asd,v 1.14 2002/09/20 05:38:01 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -21,15 +21,15 @@ (defsystem uffi :name "cl-uffi" - :author "Kevin M. Rosenberg " + :version "0.7.2" + :maintainer "Kevin M. Rosenberg " :licence "Lessor Lisp General Public License" :description "Universal Foreign Function Library for Common Lisp" :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL." :perform (load-op :after (op uffi) - (pushnew :uffi cl:*features*)) + (pushnew :uffi cl:*features*)) :components ( @@ -60,6 +60,9 @@ )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'uffi)))) +(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :uffi)))) "cl") +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :uffi)))) + (pushnew :uffi cl:*features*)))