Remove CVS $Id$ keyword
[clsql.git] / db-postgresql-socket / postgresql-socket-package.lisp
index 78988302856c01a70ef0951f01463ef7a818e9d6..718667be5984cf62da410d111c460416254e92c9 100644 (file)
@@ -2,13 +2,11 @@
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
-;;;; Name:          postgresql-socket-package.cl
+;;;; Name:          postgresql-socket-package.lisp
 ;;;; Purpose:       Package definition for PostgreSQL interface using sockets
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: postgresql-socket-package.lisp,v 1.2 2002/10/14 04:09:02 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
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package #:cl-user)
 
 #+lispworks (require "comm")
 
-(defpackage :postgresql-socket
-  (:use #:common-lisp)
+(defpackage #:postgresql-socket
+  (:use #:cl md5)
   (:export #:pgsql-ftype
-          #:pgsql-ftype#bytea
-          #:pgsql-ftype#int2
-          #:pgsql-ftype#int4
-          #:pgsql-ftype#int8
-          #:pgsql-ftype#float4
-          #:pgsql-ftype#float8
+           #:pgsql-ftype#bytea
+           #:pgsql-ftype#int2
+           #:pgsql-ftype#int4
+           #:pgsql-ftype#int8
+           #:pgsql-ftype#float4
+           #:pgsql-ftype#float8
 
-          #:+crypt-library+
-          #:postgresql-condition
-          #:postgresql-condition-connection
-          #:postgresql-condition-message
-          #:postgresql-error
-          #:postgresql-fatal-error
-          #:postgresql-login-error
-          #:postgresql-warning
-          #:postgresql-notification
-          #:postgresql-connection
-          #:postgresql-connection-p
-          #:postgresql-cursor
-          #:postgresql-cursor-p
-          #:postgresql-cursor-connection
-          #:postgresql-cursor-name
-          #:postgresql-cursor-fields
-          #:+postgresql-server-default-port+
-          #:open-postgresql-connection
-          #:reopen-postgresql-connection
-          #:close-postgresql-connection
-          #:postgresql-connection-open-p
-          #:ensure-open-postgresql-connection
-          #:start-query-execution
-          #:wait-for-query-results
-          #:read-cursor-row
-          #:copy-cursor-row
-          #:skip-cursor-row
-          ))
+           #:+crypt-library+
+           #:postgresql-condition
+           #:postgresql-condition-connection
+           #:postgresql-condition-message
+           #:postgresql-error
+           #:postgresql-fatal-error
+           #:postgresql-login-error
+           #:postgresql-warning
+           #:postgresql-notification
+           #:postgresql-connection
+           #:postgresql-connection-p
+           #:postgresql-cursor
+           #:postgresql-cursor-p
+           #:postgresql-cursor-connection
+           #:postgresql-cursor-name
+           #:postgresql-cursor-fields
+           #:+postgresql-server-default-port+
+           #:open-postgresql-connection
+           #:reopen-postgresql-connection
+           #:close-postgresql-connection
+           #:postgresql-connection-open-p
+           #:ensure-open-postgresql-connection
+           #:start-query-execution
+           #:wait-for-query-results
+           #:read-cursor-row
+           #:copy-cursor-row
+           #:skip-cursor-row
+           ))