r2284: Autocommit for make-debian
[clsql.git] / clsql.system
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql.system
6 ;;;; Purpose:       Defsystem-3/4 for CLSQL
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: clsql.system,v 1.18 2002/08/01 03:06:26 kevin Exp $
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 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :make)
21
22 ;; For use with non-Debian installations
23 (let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl"
24                                       :defaults *load-truename*)))
25   (when (probe-file helper-pathname)
26       (load helper-pathname)))
27
28 ;;; System definitions
29
30 (defsystem :clsql
31     :source-pathname "cl-library:clsql;"
32     :source-extension "cl"
33     :components ((:file "package")
34                  (:file "pool" :depends-on ("package"))
35                  (:file "loop-extension")
36                  (:file "sql" :depends-on ("pool"))
37                  (:file "transactions" :depends-on ("sql"))
38                  (:file "functional" :depends-on ("sql"))
39                  (:file "usql" :depends-on ("sql")))
40     :depends-on (:clsql-base)
41     :finally-do
42     (pushnew :clsql cl:*features*)
43     )