r11087: add cygwin support
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 3 Sep 2006 02:31:58 +0000 (02:31 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 3 Sep 2006 02:31:58 +0000 (02:31 +0000)
ChangeLog
debian/changelog
src/libraries.lisp

index ee71e036d8b18db53ad4a0976ecb8e201e8da953..b08795021e25f773623a1284bfc6942dfc96f4ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-09-02 Kevin Rosenberg (kevin@rosenberg.net)
+       * Version 1.5.16
+       * src/libraries.lisp: Add cygwin support
+       
 2006-08-13 Kevin Rosenberg (kevin@rosenberg.net)
        * Version 1.5.15
        * src/{objects,strings}.lisp: Add support for Lispworks 5 
 2006-08-13 Kevin Rosenberg (kevin@rosenberg.net)
        * Version 1.5.15
        * src/{objects,strings}.lisp: Add support for Lispworks 5 
index 7e61a639bdbd17595556a4849003bfedb493b72a..ed8fefd085b87e8e3753c3a7e6bb2e3e61b88038 100644 (file)
@@ -1,3 +1,9 @@
+cl-uffi (1.5.16-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 02 Sep 2006 20:31:11 -0600
+
 cl-uffi (1.5.15-1) unstable; urgency=low
 
   * New upstream
 cl-uffi (1.5.15-1) unstable; urgency=low
 
   * New upstream
index 349df7eb5d9371628e7db388ae3e5837b26081ba..5378deb77c1ed44cb9518819c66c74978bc78151 100644 (file)
@@ -20,9 +20,9 @@
 
 (defun default-foreign-library-type ()
   "Returns string naming default library type for platform"
 
 (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 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 ()
 )
 
 (defun foreign-library-types ()