X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=uffi%2Fclsql-uffi-loader.lisp;h=ab6702ab3c0e9c7089a6e0dddb61f80888f8964c;hp=bea05d7b307423353ecd72e7728836a48f9072e3;hb=a7ef1fce8c272e0502b0d45bbe2d1b8a05de796d;hpb=a19a3f05330fccb89af1a502e7da93b741576df0 diff --git a/uffi/clsql-uffi-loader.lisp b/uffi/clsql-uffi-loader.lisp index bea05d7..ab6702a 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.2 2002/10/17 17:01:19 kevin Exp $ +;;;; $Id: clsql-uffi-loader.lisp,v 1.3 2002/10/17 22:13:20 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -37,12 +37,15 @@ set to the right path before compiling or loading the system.") "T if foreign library was able to be loaded successfully") (defun load-uffi-foreign-library () + (unless (probe-file *clsql-uffi-library-filename*) + (error "Unable to find clsql-uffi.so")) + (if (uffi:load-foreign-library *clsql-uffi-library-filename* :module "clsql-uffi" :supporting-libraries *clsql-uffi-supporting-libraries*) (setq *uffi-library-loaded* t) - (warn "Unable to load helper library ~A" *clsql-uffi-library-filename*))) + (error "Unable to load helper library ~A" *clsql-uffi-library-filename*))) (load-uffi-foreign-library)