X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-postgresql-socket3.asd;fp=clsql-postgresql-socket3.asd;h=901057ac4f93a1afa63fbe581013655890e278a2;hb=6e49d313475d42d2ef7b4eea626f2d7da902d09e;hp=0000000000000000000000000000000000000000;hpb=fdc28505b82da26cc8142964cb8ae40cdc8bfdfc;p=clsql.git diff --git a/clsql-postgresql-socket3.asd b/clsql-postgresql-socket3.asd new file mode 100644 index 0000000..901057a --- /dev/null +++ b/clsql-postgresql-socket3.asd @@ -0,0 +1,39 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-postgresql-socket.asd +;;;; Purpose: ASDF file for CLSQL PostgresSQL socket (protocol vs 3) backend +;;;; Programmer: Russ Tyndall +;;;; Date Started: Sept 2009 +;;;; +;;;; $Id$ +;;;; +;;;; 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. +;;;; ************************************************************************* + +(defpackage #:clsql-postgresql-socket-system (:use #:asdf #:cl)) +(in-package #:clsql-postgresql-socket-system) + +;;; System definition + +(defsystem clsql-postgresql-socket3 + :name "cl-sql-postgresql-socket3" + :author "Russ Tyndall " + :maintainer "Russ Tyndall " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL PostgreSQL Socket Driver" + :long-description "cl-sql-postgresql-socket package provides a database driver to the PostgreSQL database via a socket interface." + + :depends-on (clsql md5 :cl-postgres #+sbcl sb-bsd-sockets) + :components + ((:module :db-postgresql-socket3 + :serial T + :components ((:file "command-object") + (:file "package") + (:file "api") + (:file "sql")))))