X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-odbc.asd;fp=clsql-odbc.asd;h=ae49148c05f35c6dd867e63e5ef6092611834f01;hb=2f1e9becafa048960362bd6f9bb0f327045807cd;hp=0000000000000000000000000000000000000000;hpb=8fb55434ea4d6e0a0775b0012c83a2b27061bb59;p=clsql.git diff --git a/clsql-odbc.asd b/clsql-odbc.asd new file mode 100644 index 0000000..ae49148 --- /dev/null +++ b/clsql-odbc.asd @@ -0,0 +1,39 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-odbc.asd +;;;; Purpose: ASDF definition file for CLSQL ODBC backend +;;;; Author: Kevin M. Rosenberg +;;;; Created: April 2004 +;;;; +;;;; $Id: clsql-odbc.asd 8850 2004-04-07 16:07:46Z kevin $ +;;;; +;;;; This file, part of CLSQL, is Copyright (c) 200d42 by Kevin M. Rosenberg +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(defpackage #:clsql-odbc-system (:use #:asdf #:cl)) +(in-package #:clsql-odbc-system) + +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem :clsql-odbc + :name "clsql-odbc" + :author "Kevin M. Rosenberg " + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL ODBC Driver" + :long-description "cl-sql-odbc package provides a database driver to the ODBC database system." + + :depends-on (uffi clsql-base clsql-uffi) + :components + ((:module :db-odbc + :components + ((:file "odbc-package") + (:file "odbc-loader" :depends-on ("odbc-package")) + (:file "odbc-api" :depends-on ("odbc-loader")) + (:file "odbc-sql" :depends-on ("odbc-api")))))) +