X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=8d7d3f88f44b6bc8f2e20460b0988867e9ff4194;hb=c21ea91d9d4f421f6541df17b03700cbaf87ba5c;hp=76737d32bd9dd535b470652b18195e265890434a;hpb=a95b9a217335917d96b8c0cced4f49c3e4846115;p=uffi.git diff --git a/uffi.asd b/uffi.asd index 76737d3..8d7d3f8 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.17 2002/09/30 10:02:36 kevin Exp $ +;;;; $Id: uffi.asd,v 1.21 2002/11/08 16:51:50 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,11 +19,11 @@ (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) -#+(or allegro lispworks cmu mcl) +#+(or allegro lispworks cmu mcl cormanlisp sbcl scl) (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg " - :version "0.7.2" + :version "1.0.0" :maintainer "Kevin M. Rosenberg " :licence "Lessor Lisp General Public License" :description "Universal Foreign Function Library for Common Lisp" @@ -42,14 +42,11 @@ (:file "objects" :depends-on ("primitives")) (:file "aggregates" :depends-on ("primitives")) (:file "functions" :depends-on ("primitives")) - (:file "libraries" :depends-on ("package")))) + (:file "libraries" :depends-on ("package")) + (:file "os" :depends-on ("package")))) #+cormanlisp (:module :src-corman :components ((:file "uffi-corman"))) )) -#+(or allegro lispworks cmu 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*)))