X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Flibraries.lisp;h=a8d09c3f2dc7781e4b772eed46369e31f0ef7805;hb=6ab554f2441048c9c726104d4f3c6a6acccaf383;hp=275aee1bb799e6984d050c77e0f4a42b16636d32;hpb=e481082fa36a5660e2d4191dcd5a8da2aecc41ca;p=uffi.git diff --git a/src/libraries.lisp b/src/libraries.lisp index 275aee1..a8d09c3 100644 --- a/src/libraries.lisp +++ b/src/libraries.lisp @@ -76,7 +76,7 @@ library type if type is not specified." (defun load-foreign-library (filename &key module supporting-libraries force-load) - #+(or allegro mcl sbcl) (declare (ignore module supporting-libraries)) + #+(or allegro openmcl digitool sbcl) (declare (ignore module supporting-libraries)) #+(or cmu scl) (declare (ignore module)) #+lispworks (declare (ignore supporting-libraries)) @@ -118,7 +118,7 @@ library type if type is not specified." :connection-style :immediate) #+allegro (load filename) #+openmcl (ccl:open-shared-library filename) - #+(and mcl (not openmcl)) (ccl:add-to-shared-library-search-path filename t) + #+digitool (ccl:add-to-shared-library-search-path filename t) (push filename *loaded-libraries*) t))))