X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=a3735710466c30ef469b2a66e011a0af8eaf9a03;hb=6cd78c2ec5414f6fe07002883d11d2a7802d7153;hp=bbc9d0a1456b7ffcd1c0f599c5038a2717f6439b;hpb=3c6df96ff889ad07feda90baa7b049359485d80c;p=uffi.git diff --git a/uffi.asd b/uffi.asd index bbc9d0a..a373571 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.12 2002/09/20 01:19:20 kevin Exp $ +;;;; $Id: uffi.asd,v 1.15 2002/09/25 12:44:59 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,17 +19,18 @@ (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) +#+(or allegro lispworks cmu openmcl mcl) (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg " - :version "0.7.0" - :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 +61,11 @@ )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'uffi)))) +#+(or allegro lispworks cmu openmcl mcl) +(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :uffi)))) "cl") +#+(or allegro lispworks cmu openmcl mcl) +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :uffi)))) + (pushnew :uffi cl:*features*)))