X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=clsql-postgresql-socket.asd;h=e1569cf7403da32d120b6ef4de46a06c22b78d1b;hb=94a7bd5cfc5413a85312a6363664ae262241c309;hp=7faa04bbac26ad3ce6375a8abf7fa14d13f56774;hpb=31e110c6d17b31e9978b61dcf64c13ba509182eb;p=clsql.git diff --git a/clsql-postgresql-socket.asd b/clsql-postgresql-socket.asd index 7faa04b..e1569cf 100644 --- a/clsql-postgresql-socket.asd +++ b/clsql-postgresql-socket.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-postgresql-socket.asd,v 1.3 2002/09/01 09:00:15 kevin Exp $ +;;;; $Id: clsql-postgresql-socket.asd,v 1.8 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -21,15 +21,26 @@ ;;; System definition +(defsystem clsql-postgresql-socket + :name "cl-sql-postgresql-socket" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :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." + + :components + ((:module :db-postgresql-socket + :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)) + (defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql-postgresql-socket)))) + (s (eql (find-system :clsql-postgresql-socket)))) "cl") -(defsystem clsql-postgresql-socket - :pathname #.(format nil "~A:clsql-postgresql-socket;" +clsql-logical-host+) - :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))