r3445: mcl/openmcl fixes
[uffi.git] / src / libraries.lisp
index f922b668d5ec22e4850f8ab5940b6fd9fdeefd5e..56829a0155d6a287c6e21f6c769854070c12a138 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: libraries.lisp,v 1.5 2002/11/18 04:53:32 kevin Exp $
+;;;; $Id: libraries.lisp,v 1.6 2002/11/20 21:01:31 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -25,8 +25,8 @@
 (defun default-foreign-library-type ()
   "Returns string naming default library type for platform"
   #+(or win32 mswindows) "dll"
-  #+(or macosx darwin) "dylib"
-  #-(or win32 mswindows macosx darwin) "so"
+  #+(or macosx darwin ccl-5.0) "dylib"
+  #-(or win32 mswindows macosx darwin ccl-5.0) "so"
 )
 
 (defun find-foreign-library (names directories &key types drive-letters)  
@@ -73,7 +73,7 @@ library type if type is not specified."
 
 (defun load-foreign-library (filename &key module supporting-libraries
                                           force-load)
-  #+(or allegro lispworks openmcl) (declare (ignore module supporting-libraries))
+  #+(or allegro lispworks mcl) (declare (ignore module supporting-libraries))
   #+(or cmu scl sbcl) (declare (ignore module))
   
   (when (and filename (probe-file filename))