-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsql-fluid.asd
36 lines (34 loc) · 1.25 KB
/
clsql-fluid.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: clsql-fluid.asd
;;;; Purpose: System definition for CLSQL-FLUID
;;;; Authors: Stephen Compall
;;;; Created: December 2008
;;;;
;;;; $Id$
;;;;
;;;; 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 #:cl-user)
(defpackage #:clsql-fluid-system (:use #:asdf #:cl))
(in-package #:clsql-fluid-system)
(defsystem clsql-fluid
:name "CLSQL-Fluid"
:author "Stephen Compall <[email protected]>"
:maintainer "Kevin M. Rosenberg <[email protected]>"
:licence "Lessor Lisp General Public License"
:description "Common Lisp SQL Fluid Connection Pools"
:long-description "A full database type based on fluids, or
per-thread connections."
:depends-on (clsql closer-mop bordeaux-threads)
:components
((:module sql
:components
((:module base
:pathname ""
:components
((:file "fluid")))))))