r11087: add cygwin support
[uffi.git] / src / libraries.lisp
index 349df7eb5d9371628e7db388ae3e5837b26081ba..5378deb77c1ed44cb9518819c66c74978bc78151 100644 (file)
@@ -20,9 +20,9 @@
 
 (defun default-foreign-library-type ()
   "Returns string naming default library type for platform"
-  #+(or win32 mswindows) "dll"
+  #+(or win32 cygwin mswindows) "dll"
   #+(or macosx darwin ccl-5.0) "dylib"
-  #-(or win32 mswindows macosx darwin ccl-5.0) "so"
+  #-(or win32 cygwin mswindows macosx darwin ccl-5.0) "so"
 )
 
 (defun foreign-library-types ()