r2570: Auto commit for Debian build
[clsql.git] / clsql-base.system
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-base.system
6 ;;;; Purpose:       Defsystem-3/4 for Base CLSQL
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: clsql-base.system,v 1.11 2002/09/06 10:31:51 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-Common Lisp Controller installations
23 #-common-lisp-controller
24 (let ((path (make-pathname :name "set-logical" :type "cl"
25                                       :defaults *load-truename*)))
26   (when (probe-file path)
27     (load path)
28     (set-logical-host-for-pathname 
29      "clsql" 
30      (make-pathname :host (pathname-host *load-truename*)
31                     :device (pathname-device *load-truename*)
32                     :directory (pathname-directory *load-truename*)))))
33
34 (eval-when (:compile-toplevel :load-toplevel :execute)
35   (defconstant +clsql-logical-host+
36       #+common-lisp-controller "cl-library"
37       #-common-lisp-controller "clsql"
38       "Logical hostname for loading system"))
39
40 ;;; System definitions
41
42 (defsystem :clsql-base
43   :source-pathname #.(format nil "~A:clsql-base;" +clsql-logical-host+)
44   :source-extension "cl"
45   :components ((:file "cmucl-compat")
46                (:file "package")
47                (:file "utils" :depends-on ("package"))
48                (:file "classes" :depends-on ("package"))
49                (:file "conditions" :depends-on ("classes"))
50                (:file "db-interface" :depends-on ("conditions"))
51                (:file "initialize" :depends-on ("db-interface")))
52   :finally-do
53   (pushnew :clsql-base cl:*features*)
54   )