From: Kevin M. Rosenberg Date: Wed, 18 Sep 2002 07:17:44 +0000 (+0000) Subject: r2750: *** empty log message *** X-Git-Tag: v3.8.6~945 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=8e793d3e1cd85db1f864f6ae9eba6bb27da66c99;p=clsql.git r2750: *** empty log message *** --- diff --git a/doc/clsql.pdf b/doc/clsql.pdf index e5d68d4..0e844b4 100644 Binary files a/doc/clsql.pdf and b/doc/clsql.pdf differ diff --git a/doc/clsql.sgml b/doc/clsql.sgml index 90117ac..19e7e0f 100644 --- a/doc/clsql.sgml +++ b/doc/clsql.sgml @@ -2,7 +2,9 @@ Defsystem"> +ASDF"> CLOCC"> +CCLAN"> UFFI"> FFI"> CLSQL"> diff --git a/doc/html.tar.gz b/doc/html.tar.gz index 288b926..1cd7536 100644 Binary files a/doc/html.tar.gz and b/doc/html.tar.gz differ diff --git a/doc/intro.sgml b/doc/intro.sgml index 5f0b76b..8399857 100644 --- a/doc/intro.sgml +++ b/doc/intro.sgml @@ -46,15 +46,9 @@ are: &defsystem; - &clsql; uses &defsystem to compile and load its -components. &defsystem; is included in the &clocc; collection. The -version in the pre-packaged distribution is rather old and -may not function well. The version in CVS tree tree works quite -well. For convenience, a copy of the latest &defsystem; at the FTP -site -of &clsql;. + &clsql; uses &asdf; to compile and load its +components. &asdf; is included in the &cclan; collection. @@ -145,14 +139,13 @@ in the root directory of &clsql; to build the libraries Load &uffi; Unzip or untar the &uffi; distribution which creates a directory -for the &uffi; files. Add that directory to Defsystem's mk:*central-registry*. -You can do that by either pushing the pathname of the directory onto this variable, or -use the new add-registry-location present in the newest versions of -&defsystem;. The following example code assumes the &uffi; files reside in the -/usr/local/src/lisp/uffi directory. +for the &uffi; 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 &uffi; files reside in the +/usr/share/lisp/uffi/ directory. -(mk:add-registry-location #P"/usr/local/src/lisp/uffi") -(mk:load-system :uffi) +(push #P"/usr/share/lisp/uffi/" asdf:*central-repository*) +(asdf:oos 'asdf:load-op :uffi) @@ -161,19 +154,19 @@ use the new add-registry-location present in the newest ver Load &clsql; modules Unzip or untar the &clsql; distribution which creates a directory -for the &clsql; files. Add that directory to Defsystem's mk:*central-registry*. -You can do that by either pushing the pathname of the directory onto this variable, or -use the new add-registry-location present in the newest versions of -&defsystem;. The following example code assumes the &clsql; files reside in the -/usr/local/src/lisp/clsql directory. You need to load, at a minimum, +for the &clsql; 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 &clsql; files reside in the +/usr/share/lisp/clsql/ directory. You need to load, at a minimum, the main :clsql system and at least one interface system. -(mk:add-registry-location #P"/usr/local/src/lisp/clsql") -(mk:load-system :clsql) ; main clsql package -(mk:load-system :clsql-mysql) ; MySQL interface -(mk:load-system :clsql-postgresql) ; PostgreSQL interface -(mk:load-system :clsql-postgresql-socket) ; Socket PGSQL interface -(mk:load-system :clsql-aodbc) ; Allegro ODBC interface +(push #P"/usr/share/lisp/clsql/" asdf:*central-repository*) +(asdf:oos 'asdf:load-op :clsql-base) ; base clsql package +(asdf:oos 'asdf:load-op :clsql-mysql) ; MySQL interface +(asdf:oos 'asdf:load-op :clsql-postgresql) ; PostgreSQL interface +(asdf:oos 'asdf:load-op :clsql-postgresql-socket) ; Socket PGSQL interface +(asdf:oos 'asdf:load-op :clsql-aodbc) ; Allegro ODBC interface +(asdf:oos 'asdf:load-op :clsql) ; main clsql package