r9736: fix bug preventing the :DB-CONSTRAINTS View Class slot option accepting a...
[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$
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   :depends-on (clsql)
32   :components
33     ((:module :db-aodbc
34               :components
35               ((:file "aodbc-package")
36                (:file "aodbc-sql" :depends-on ("aodbc-package"))))))
37
38 #-(and allegro (not allegro-cl-trial))
39 (defsystem clsql-aodbc)