X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-sqlite%2Fsqlite-loader.lisp;h=59baaee3822d4cfe8d81b0a0dcb477775e1c27ab;hp=aa25d5e44d835b34cb5207eb13a0f2bf947acbdf;hb=a9f4dd155f9802d1444ab03339879232c6337f57;hpb=fc6e46a000589bffc1a1b69cb3fe13bcbaade59b diff --git a/db-sqlite/sqlite-loader.lisp b/db-sqlite/sqlite-loader.lisp index aa25d5e..59baaee 100644 --- a/db-sqlite/sqlite-loader.lisp +++ b/db-sqlite/sqlite-loader.lisp @@ -23,18 +23,14 @@ to load the SQLite library succesfully. If this differs at your site, set to the right path before compiling or loading the system.") -(defvar *sqlite-library-loaded* #+clisp t - #-clisp nil - "T if foreign library was able to be loaded successfully") +(defvar *sqlite-library-loaded* nil + "T if foreign library was able to be loaded successfully") (defmethod database-type-library-loaded ((database-type (eql :sqlite))) "T if foreign library was able to be loaded successfully. " *sqlite-library-loaded*) (defmethod database-type-load-foreign ((database-type (eql :sqlite))) - #+clisp - t - #-clisp (let ((libpath (uffi:find-foreign-library '("libsqlite" "sqlite") '(#+64bit "/usr/lib64/"