X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-postgresql-socket.system;h=e4ee7b0a02f29124269f4043de706b55a56af7e0;hp=7a89a856b9d22e7b563df30f86a0f1050e6c862a;hb=cbec78ec2d390fcf641108c1ca8d1589a0f22ed8;hpb=1a44400b42310a985f1a27ea8f53da84716955e1 diff --git a/clsql-postgresql-socket.system b/clsql-postgresql-socket.system index 7a89a85..e4ee7b0 100644 --- a/clsql-postgresql-socket.system +++ b/clsql-postgresql-socket.system @@ -1,36 +1,34 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: clsql-postgresql.system -;;;; Purpose: Defsystem-3/4 file for CLSQL PostgresSQL socket backend -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 -;;;; -;;;; $Id: clsql-postgresql-socket.system,v 1.3 2002/03/29 08:28:14 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. -;;;; ************************************************************************* - -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :make) - -;;; System definition - -(defsystem :clsql-postgresql-socket - :source-pathname "CLSQL:interfaces;postgresql-socket;" - :source-extension "cl" - :binary-pathname "CLSQL:interfaces;postgresql-socket;bin;" - :components ((:file "postgresql-socket-package") - (:file "postgresql-socket-api" - :depends-on ("postgresql-socket-package")) - (:file "postgresql-socket-sql" - :depends-on ("postgresql-socket-api"))) - :depends-on (:clsql) - :finally-do - (when (clsql-sys:database-type-library-loaded :postgresql-socket) - (clsql-sys:initialize-database-type :database-type :postgresql-socket))) +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-postgresql.system +;;;; Purpose: Defsystem-3/4 file for CLSQL PostgresSQL socket backend +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Feb 2002 +;;;; +;;;; $Id: clsql-postgresql-socket.system,v 1.12 2002/09/06 10:56:13 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. +;;;; ************************************************************************* + +(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) +(in-package :make) + +;;; System definition + +(defsystem :clsql-postgresql-socket + :source-pathname #.(format nil "~A:clsql-postgresql-socket;" + #+common-lisp-controller "cl-library" + #-common-lisp-controller "clsql") + :source-extension "cl" + :components ((:file "postgresql-socket-package") + (:file "postgresql-socket-api" + :depends-on ("postgresql-socket-package")) + (:file "postgresql-socket-sql" + :depends-on ("postgresql-socket-api"))) + :depends-on (:clsql-base :uffi))