X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2Fintro.xml;h=c6a16ac201f4b4b62e345da518298f0a01a63e81;hb=6be34428648ce3281413579c9160fb5d24d03320;hp=f227f2f0724e4d23008d21f24d3cbfb5cf7f01b4;hpb=4661cdbb26de93d072226ab6cd9325c1ca7bb75e;p=clsql.git diff --git a/doc/intro.xml b/doc/intro.xml index f227f2f..c6a16ac 100644 --- a/doc/intro.xml +++ b/doc/intro.xml @@ -1,4 +1,4 @@ - + @@ -126,9 +126,9 @@ Ensure &asdf; is loaded Simply load the file asdf.lisp. - + (load "asdf.lisp") - + @@ -155,9 +155,9 @@ linking on Linux. If you are using FreeBSD or Solaris, you will need to change the linker setting as instructed in the Makefile. Then, you can give the command - + make libs - + in the root directory of &clsql; to build the libraries interfaces/mysql/clsql-mysql.so and interfaces/clsql-uffi/clsql-uffi.so. @@ -173,10 +173,10 @@ make libs The following example code assumes the &uffi; files reside in the /usr/share/lisp/uffi/ directory. - + (push #P"/usr/share/lisp/uffi/" asdf:*central-registry*) -(asdf:oos 'asdf:load-op :uffi) - +(asdf:operate 'asdf:load-op :uffi) + @@ -189,10 +189,10 @@ make libs 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) - +(asdf:operate 'asdf:load-op :md5) + @@ -206,7 +206,7 @@ make libs /usr/share/lisp/clsql/ directory. You need to load, at a minimum, the main :clsql system and at least one interface system. - + (push #P"/usr/share/lisp/clsql/" asdf:*central-repository*) (asdf:operate 'asdf:load-op 'clsql-base) ; base clsql package (asdf:operate 'asdf:load-op 'clsql-mysql) ; MySQL interface @@ -214,7 +214,7 @@ make libs (asdf:operate 'asdf:load-op 'clsql-postgresql-socket) ; Socket PGSQL interface (asdf:operate 'asdf:load-op 'clsql-aodbc) ; Allegro ODBC interface (asdf:operate 'asdf:load-op 'clsql) ; main clsql package - + @@ -227,9 +227,9 @@ make libs in the tests/tests.lisp file in the &clsql; source directory. After creating that file, you can run the test suite with &asdf;: - -(asdf:operate 'asdf:test-op 'clsql) - . . + + (asdf:operate 'asdf:test-op 'clsql) +