fixed bug converting to boolean in db-mysql/mysql-sql.lisp - from github user Sectoid
[clsql.git] / clsql-db2.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-db2.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL Db2 backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; This file is part of CLSQL.
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (defpackage #:clsql-db2-system (:use #:asdf #:cl))
18 (in-package #:clsql-db2-system)
19
20 ;;; System definition
21
22 (defsystem clsql-db2
23   :name "clsql-db2"
24   :author "Kevin M. Rosenberg <kmr@debian.org>"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "Lessor Lisp General Public License"
27   :description "Common Lisp SQL Db2 Driver"
28   :long-description "cl-sql-db2 package provides a database driver to the Db2 database system."
29
30   :depends-on (clsql-uffi)
31   :components
32     ((:module :db-db2
33               :components
34               ((:file "db2-package")
35                (:file "db2-loader" :depends-on ("db2-package"))
36                (:file "foreign-resources" :depends-on ("db2-package"))
37                (:file "db2-constants" :depends-on ("db2-package"))
38                (:file "db2-api" :depends-on ("db2-constants" "db2-loader"))
39                (:file "db2-sql" :depends-on ("db2-api" "foreign-resources"))
40                (:file "db2-objects" :depends-on ("db2-sql"))))))