From: Kevin M. Rosenberg Date: Tue, 29 Apr 2003 10:01:50 +0000 (+0000) Subject: r4693: *** empty log message *** X-Git-Tag: v3.8.6~869 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=288394c55bdefb248ca356001000988279ba4f74;ds=sidebyside r4693: *** empty log message *** --- diff --git a/doc/clsql.sgml b/doc/clsql.sgml index 04e4324..a620c0c 100644 --- a/doc/clsql.sgml +++ b/doc/clsql.sgml @@ -15,6 +15,7 @@ AODBC"> CMUCL"> SCL"> +MD5"> SBCL"> OpenMCL"> Lispworks"> diff --git a/doc/intro.sgml b/doc/intro.sgml index 99bad1e..c722627 100644 --- a/doc/intro.sgml +++ b/doc/intro.sgml @@ -69,6 +69,11 @@ are zip files for Microsoft Windows systems and gzipped tar files for other systems. + + &uffi; + &clsql;'s postgresql-socket interface uses Pierre Mai's + md5 module. If you plan to use + this interface please download the md5 module from ftp://clsql.b9.com Supported Common Lisp Implementation @@ -79,7 +84,7 @@ implementations of &uffi;. The following implementations are supported: &acl; v6.2 on Debian Linux, FreeBSD 4.5, and Microsoft Windows XP. &lw; v4.2 on Debian Linux and Microsoft Windows XP. &cmucl; 18d on Debian Linux, FreeBSD 4.5, and Solaris 2.8. - &sbcl; 0.7.8 on Debian Linux. + &sbcl; 0.7.14 on Debian Linux. &scl; 1.1 on Debian Linux. &openmcl; 0.13 on Debian Linux PowerPC. @@ -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 /usr/share/lisp/uffi/ directory. -(push #P"/usr/share/lisp/uffi/" asdf:*central-repository*) +(push #P"/usr/share/lisp/uffi/" asdf:*central-registry*) (asdf:oos 'asdf:load-op :uffi) + + Load &md5; module + + 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 asdf:*central-registry*. + 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 + /usr/share/lisp/cl-md5/ directory. + +(push #P"/usr/share/lisp/cl-md5/" asdf:*central-registry*) +(asdf:oos 'asdf:load-op :md5) + + + Load &clsql; modules