r4147: Auto commit for Debian build
[clsql.git] / clsql-aodbc.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-aodbc.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL AODBC backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: clsql-aodbc.asd,v 1.12 2002/09/30 10:19:23 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 (in-package :asdf)
20
21 #+(and allegro (not allegro-cl-trial))
22 (defsystem :clsql-aodbc
23   :name "cl-sql-aodbc"
24   :author "Kevin M. Rosenberg <kmr@debian.org>"
25   :version "0.9.2"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :licence "Lessor Lisp General Public License"
28   :description "Common Lisp SQL AODBC Driver"
29   :long-description "cl-sql-aodbc package provides a database driver to AllegroCL's AODBC database interface."
30
31   :components
32     ((:module :db-aodbc
33               :components
34               ((:file "aodbc-package")
35                (:file "aodbc-sql" :depends-on ("aodbc-package")))))
36     :depends-on (:clsql-base))