X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi%2Fclsql-uffi-loader.lisp;h=a8f7173a84ea4657004f40a9f4fec9f75426e7b8;hb=333e8280f2f3438ffd379349bc9746c34cccc159;hp=be988e1644fce55a9a5f59c21a5b97f03a02b689;hpb=5ec859ec0f280b3dcec8320dce98bf325cb16c0e;p=clsql.git diff --git a/uffi/clsql-uffi-loader.lisp b/uffi/clsql-uffi-loader.lisp index be988e1..a8f7173 100644 --- a/uffi/clsql-uffi-loader.lisp +++ b/uffi/clsql-uffi-loader.lisp @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: clsql-uffi-loader.lisp,v 1.4 2003/05/17 06:03:03 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,12 +16,11 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :clsql-uffi) +(in-package #:clsql-uffi) (defvar *clsql-uffi-library-filename* (uffi:find-foreign-library - "clsql-uffi" + "uffi" `(,(make-pathname :directory (pathname-directory *load-truename*)) "/usr/lib/clsql/" "/opt/lisp/clsql/uffi/" @@ -38,7 +37,7 @@ set to the right path before compiling or loading the system.") (defun load-uffi-foreign-library () (unless (probe-file *clsql-uffi-library-filename*) - (error "Unable to find clsql-uffi.so")) + (error "Unable to find uffi.so")) (if (uffi:load-foreign-library *clsql-uffi-library-filename* :module "clsql-uffi" @@ -49,5 +48,3 @@ set to the right path before compiling or loading the system.") (load-uffi-foreign-library) - -