Update local CFFI to darcs from 1.6.08
[CommonLispStat.git] / external / cffi.darcs / _darcs / pristine / cffi.asd
blob1f00797aa9343ad09c33c8da33bc42a42f4a51c3
1 ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; cffi.asd --- ASDF system definition for CFFI.
4 ;;;
5 ;;; Copyright (C) 2005-2006, James Bielman  <jamesjb@jamesjb.com>
6 ;;;
7 ;;; Permission is hereby granted, free of charge, to any person
8 ;;; obtaining a copy of this software and associated documentation
9 ;;; files (the "Software"), to deal in the Software without
10 ;;; restriction, including without limitation the rights to use, copy,
11 ;;; modify, merge, publish, distribute, sublicense, and/or sell copies
12 ;;; of the Software, and to permit persons to whom the Software is
13 ;;; furnished to do so, subject to the following conditions:
14 ;;;
15 ;;; The above copyright notice and this permission notice shall be
16 ;;; included in all copies or substantial portions of the Software.
17 ;;;
18 ;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 ;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 ;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 ;;; NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 ;;; HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 ;;; WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 ;;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 ;;; DEALINGS IN THE SOFTWARE.
26 ;;;
28 #-(or openmcl sbcl cmu scl clisp lispworks ecl allegro cormanlisp)
29 (error "Sorry, this Lisp is not yet supported.  Patches welcome!")
31 (defpackage #:cffi-system
32   (:use #:cl #:asdf))
33 (in-package #:cffi-system)
35 (defsystem cffi
36   :description "The Common Foreign Function Interface"
37   :author "James Bielman  <jamesjb@jamesjb.com>"
38   :version "0.9.2"
39   :licence "MIT"
40   :depends-on (alexandria trivial-features babel)
41   :components
42   ((:module src
43     :serial t
44     :components
45     ((:file "utils")
46      (:file "features")
47      #+openmcl    (:file "cffi-openmcl")
48      #+sbcl       (:file "cffi-sbcl")
49      #+cmu        (:file "cffi-cmucl")
50      #+scl        (:file "cffi-scl")
51      #+clisp      (:file "cffi-clisp")
52      #+lispworks  (:file "cffi-lispworks")
53      #+ecl        (:file "cffi-ecl")
54      #+allegro    (:file "cffi-allegro")
55      #+cormanlisp (:file "cffi-corman")
56      (:file "package")
57      (:file "libraries")
58      (:file "early-types")
59      (:file "types")
60      (:file "enum")
61      (:file "strings")
62      (:file "functions")
63      (:file "foreign-vars")))))
65 (defmethod perform ((o test-op) (c (eql (find-system :cffi))))
66   (operate 'asdf:load-op :cffi-tests)
67   (operate 'asdf:test-op :cffi-tests))
69 ;; vim: ft=lisp et