r1639: Initial revision
[clsql.git] / clsql-postgresql-socket.system
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-postgresql.system
6 ;;;; Purpose:       Defsystem-3/4 file for CLSQL PostgresSQL socket backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id: clsql-postgresql-socket.system,v 1.1 2002/03/23 14:04:49 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 ;;; System definition
23
24 (defsystem :clsql-postgresql-socket
25     :source-pathname "CLSQL:interfaces;postgresql-socket;"
26     :source-extension "cl"
27     :binary-pathname "CLSQL:interfaces;postgresql-socket;bin;"
28     :components ((:file "postgresql-socket-package")
29                  (:file "postgresql-socket-uffi"
30                         :depends-on ("postgresql-socket-package"))
31                  (:file "postgresql-socket-sql"
32                         :depends-on ("postgresql-socket-uffi")))
33     :depends-on (:clsql))