;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: clsql-base.asd ;;;; Purpose: ASDF definition file for Base CLSQL ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; ;;;; $Id: clsql-base.asd,v 1.18 2002/11/08 16:51:50 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 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. ;;;; ************************************************************************* (in-package :asdf) #+(or allegro lispworks cmu sbcl openmcl mcl scl) (defsystem :clsql-base :name "cl-sql-base" :author "Kevin M. Rosenberg " :version "0.9.2" :maintainer "Kevin M. Rosenberg " :licence "Lessor Lisp General Public License" :description "Common Lisp SQL Base Package" :long-description "cl-sql-base package provides the low-level interface for the database drivers." :perform (load-op :after (op clsql-base) (pushnew :clsql-base cl:*features*)) :components ((:module :base :components ((:file "cmucl-compat") (:file "package") (:file "utils" :depends-on ("package")) (:file "classes" :depends-on ("package")) (:file "conditions" :depends-on ("classes")) (:file "db-interface" :depends-on ("conditions")) (:file "initialize" :depends-on ("db-interface"))))))