21ef79a4ac08ee3b220e5550cedafe4a680ae1da
[clsql.git] / clsql-uffi.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL UFFI Helper package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: clsql-uffi.asd,v 1.14 2002/10/16 11:51:04 kevin Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20
21 (in-package :asdf)
22
23 ;;; System definition
24
25 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
26 (defsystem :clsql-uffi
27   :name "cl-sql-base"
28   :author "Kevin M. Rosenberg <kmr@debian.org>"
29   :version "0.9.2"
30   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
31   :licence "Lessor Lisp General Public License"
32   :description "Common UFFI Helper functions for Common Lisp SQL Interface Library"
33   :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package."
34
35   :components
36   ((:module :uffi
37             :components
38             ((:file "clsql-uffi-package")
39              (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package"))
40              (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))))
41   :depends-on (:uffi :clsql-base))