r4693: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 29 Apr 2003 10:01:50 +0000 (10:01 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 29 Apr 2003 10:01:50 +0000 (10:01 +0000)
doc/clsql.sgml
doc/intro.sgml

index 04e432497344713398fe8641b8841587a91b652f..a620c0ca716b305250daf9a8af5a1acda9f09850 100644 (file)
@@ -15,6 +15,7 @@
 <!ENTITY aodbc "<application>AODBC</application>">
 <!ENTITY cmucl "<application>CMUCL</application>">
 <!ENTITY scl "<application>SCL</application>">
+<!ENTITY md5 "<application>MD5</application>">
 <!ENTITY sbcl "<application>SBCL</application>">
 <!ENTITY openmcl "<application>OpenMCL</application>">
 <!ENTITY lw "<application>Lispworks</application>">
index 99bad1e5d394bbb972d1502a4d6dcdaa97f30f4f..c722627bb5bc9c2a3713586f285b7c28d735d734 100644 (file)
@@ -69,6 +69,11 @@ are zip files for Microsoft Windows systems and gzipped tar files for
 other systems.</para>
     </sect2>
 
+    <sect2>
+      <title>&uffi;</title>
+      <para>&clsql;'s postgresql-socket interface uses Pierre Mai's 
+       <ulink url="ftp://clsql.b9.com/">md5</ulink> module. If you plan to use
+       this interface please download the md5 module from ftp://clsql.b9.com </para>       
     <sect2>
       <title>Supported Common Lisp Implementation</title>
       <para>
@@ -79,7 +84,7 @@ implementations of &uffi;. The following implementations are supported:
        <listitem><para>&acl; v6.2 on Debian Linux, FreeBSD 4.5, and Microsoft Windows XP.</para></listitem>
        <listitem><para>&lw; v4.2 on Debian Linux and Microsoft Windows XP.</para></listitem>
        <listitem><para>&cmucl; 18d on Debian Linux, FreeBSD 4.5, and Solaris 2.8.</para></listitem>
-       <listitem><para>&sbcl; 0.7.8 on Debian Linux.</para></listitem>
+       <listitem><para>&sbcl; 0.7.14 on Debian Linux.</para></listitem>
        <listitem><para>&scl; 1.1 on Debian Linux.</para></listitem>
        <listitem><para>&openmcl; 0.13 on Debian Linux PowerPC.</para></listitem>
       </itemizedlist>
@@ -150,11 +155,26 @@ You can do that by pushing the pathname of the directory onto this variable.
  The following example code assumes the &uffi; files reside in the
 <filename>/usr/share/lisp/uffi/</filename> directory.
        <programlisting>
-(push #P"/usr/share/lisp/uffi/" asdf:*central-repository*)
+(push #P"/usr/share/lisp/uffi/" asdf:*central-registry*)
 (asdf:oos 'asdf:load-op :uffi)
         </programlisting>
       </para>
     </sect2>
+   <sect2>
+      <title>Load &md5; module</title>
+      <para>
+        If you plan to use the  clsql-postgresql-socket interface, you must load the md5 module.
+        Unzip or untar the cl-md5 distribution, which creates a directory for the cl-md5 files.
+        Add that directory to Defsystem's <varname>asdf:*central-registry*</varname>. 
+        You can do that by pushing the pathname of the directory onto this variable.
+        The following example code assumes the cl-md5 files reside in the
+        <filename>/usr/share/lisp/cl-md5/</filename> directory.
+       <programlisting>
+(push #P"/usr/share/lisp/cl-md5/" asdf:*central-registry*)
+(asdf:oos 'asdf:load-op :md5)
+        </programlisting>
+      </para>
+    </sect2>
 
     <sect2>
       <title>Load &clsql; modules</title>