Update AllegroCL for :long-long on 64-bit platforms
[uffi.git] / uffi.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          uffi.asd
6 ;;;; Purpose:       ASDF system definition file for UFFI package
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; *************************************************************************
13
14 (defpackage #:uffi-system (:use #:asdf #:cl))
15 (in-package #:uffi-system)
16
17 #+(or allegro lispworks cmu openmcl digitool cormanlisp sbcl scl)
18 (defsystem uffi
19   :name "uffi"
20   :author "Kevin Rosenberg <kevin@rosenberg.net>"
21   :version "2.0.0"
22   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
23   :licence "Lessor Lisp General Public License"
24   :description "Universal Foreign Function Library for Common Lisp"
25   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
26
27   :components
28   ((:module :src
29             :components
30             ((:file "package")
31              (:file "i18n" :depends-on ("package"))
32              (:file "primitives" :depends-on ("i18n"))
33              #+(or openmcl digitool) (:file "readmacros-mcl" :depends-on ("package"))
34              (:file "objects" :depends-on ("primitives"))
35              (:file "aggregates" :depends-on ("primitives"))
36              (:file "strings" :depends-on ("primitives" "functions" "aggregates" "objects"
37                                            #+(or openmcl digitool) "readmacros-mcl"))
38              (:file "functions" :depends-on ("primitives"))
39              (:file "libraries" :depends-on ("package"))
40              (:file "os" :depends-on ("package"))))
41    ))
42
43 #+(or allegro lispworks cmu openmcl digitool cormanlisp sbcl scl)
44 (defmethod perform ((o test-op) (c (eql (find-system 'uffi))))
45   (oos 'load-op 'uffi-tests)
46   (oos 'test-op 'uffi-tests :force t))
47
48