From 1e5809bc5e68d9f1f5a676fa24253b3b95d490ac Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 3 Sep 2006 02:31:58 +0000 Subject: [PATCH] r11087: add cygwin support --- ChangeLog | 4 ++++ debian/changelog | 6 ++++++ src/libraries.lisp | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee71e03..b087950 100644 --- 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 diff --git a/debian/changelog b/debian/changelog index 7e61a63..ed8fefd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-uffi (1.5.16-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Sat, 02 Sep 2006 20:31:11 -0600 + cl-uffi (1.5.15-1) unstable; urgency=low * New upstream diff --git a/src/libraries.lisp b/src/libraries.lisp index 349df7e..5378deb 100644 --- a/src/libraries.lisp +++ b/src/libraries.lisp @@ -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 () -- 2.34.1