clsql/doc clsql.sgml,1.6,1.7 intro.sgml,1.13,1.14
"Kevin M. Rosenberg" <[email protected]> Tue, 29 Apr 2003 04:01:53 -0600
| Newsgroups | gmane.lisp.clsql.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /pubcvs/clsql/doc
In directory boa.b9.com:/tmp/cvs-serv4402
Modified Files:
clsql.sgml intro.sgml
Log Message:
Index: clsql.sgml
===================================================================
RCS file: /pubcvs/clsql/doc/clsql.sgml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** clsql.sgml 17 Oct 2002 17:01:18 -0000 1.6
--- clsql.sgml 29 Apr 2003 10:01:50 -0000 1.7
***************
*** 16,19 ****
--- 16,20 ----
<!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>">
Index: intro.sgml
===================================================================
RCS file: /pubcvs/clsql/doc/intro.sgml,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** intro.sgml 17 Oct 2002 17:01:19 -0000 1.13
--- intro.sgml 29 Apr 2003 10:01:50 -0000 1.14
***************
*** 71,74 ****
--- 71,79 ----
<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>
***************
*** 80,84 ****
<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>&scl; 1.1 on Debian Linux.</para></listitem>
<listitem><para>&openmcl; 0.13 on Debian Linux PowerPC.</para></listitem>
--- 85,89 ----
<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.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>
***************
*** 151,156 ****
<filename>/usr/share/lisp/uffi/</filename> directory.
<programlisting>
! (push #P"/usr/share/lisp/uffi/" asdf:*central-repository*)
(asdf:oos 'asdf:load-op :uffi)
</programlisting>
</para>
--- 156,176 ----
<filename>/usr/share/lisp/uffi/</filename> directory.
<programlisting>
! (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>