X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=doc%2Fintro.xml;h=fa9a2a7c54e1d4cc4a24ffc7227d3c3d03577661;hp=b0a431ae217041c9a2ada89c0e84e71ee03dd471;hb=eefedf3f7e0ace05e4c9724567f87dc88a3f1c2e;hpb=a36acf72b1781e66e0271a06985b21c7fddaf6d0 diff --git a/doc/intro.xml b/doc/intro.xml index b0a431a..fa9a2a7 100644 --- a/doc/intro.xml +++ b/doc/intro.xml @@ -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) - + @@ -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) - + @@ -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) - . . +