r4863: 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.13 2003/05/07 02:45:08 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 (defpackage #:clsql-aodbc-system (:use #:asdf #:cl))
20 (in-package #:clsql-aodbc-system)
21
22 #+(and allegro (not allegro-cl-trial))
23 (defsystem clsql-aodbc
24   :name "cl-sql-aodbc"
25   :author "Kevin M. Rosenberg <kmr@debian.org>"
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))