X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=8d7d3f88f44b6bc8f2e20460b0988867e9ff4194;hb=c21ea91d9d4f421f6541df17b03700cbaf87ba5c;hp=7e7c3ec3777648c8064de3cc1fa47150b02f490e;hpb=c6173422ade336ec21cd0a9ae866bafd7d402469;p=uffi.git diff --git a/uffi.asd b/uffi.asd index 7e7c3ec..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.2 2002/08/18 01:57:18 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 ;;;; @@ -17,41 +17,36 @@ ;;;; ************************************************************************* (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :cl-user) - -;; For use with non-Debian installations -(let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl" - :defaults *load-truename*))) - (when (probe-file helper-pathname) - (load helper-pathname))) - (in-package :asdf) -(defclass uffi-cl-source-file (cl-source-file) ()) -(defmethod source-file-type ((c uffi-cl-source-file) (s module)) - "cl") - +#+(or allegro lispworks cmu mcl cormanlisp sbcl scl) (defsystem uffi :name "cl-uffi" - :author "Kevin M. Rosenberg " + :version "1.0.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." - :default-component-class uffi-cl-source-file - :pathname #-mcl "cl-library:uffi;" - #+mcl "cl-library:uffi;mcl;" :perform (load-op :after (op uffi) - (pushnew :uffi cl:*features*)) - :components - ((:file "package") - (:file "primitives" :depends-on ("package")) - (:file "strings" :depends-on ("primitives")) - (:file "objects" :depends-on ("primitives")) - (:file "aggregates" :depends-on ("primitives")) - (:file "functions" :depends-on ("primitives")) - (:file "libraries" :depends-on ("package"))) - ) + (pushnew :uffi cl:*features*)) + + :components + ((:module :src + :components + ((:file "package") + (:file "primitives" :depends-on ("package")) + #+mcl (:file "readmacros-mcl" :depends-on ("package")) + (:file "strings" :depends-on ("primitives")) + (:file "objects" :depends-on ("primitives")) + (:file "aggregates" :depends-on ("primitives")) + (:file "functions" :depends-on ("primitives")) + (:file "libraries" :depends-on ("package")) + (:file "os" :depends-on ("package")))) + #+cormanlisp + (:module :src-corman + :components + ((:file "uffi-corman"))) + ))