r10917: 2006-04-17 Kevin Rosenberg (kevin@rosenberg.net)
[uffi.git] / src / libraries.lisp
index 275aee1bb799e6984d050c77e0f4a42b16636d32..a8d09c3f2dc7781e4b772eed46369e31f0ef7805 100644 (file)
@@ -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))))