From 7db258edcc2a0bdd529b536e8a8a8d3cc0b7c611 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Tue, 5 Jun 2007 16:17:00 +0000 Subject: [PATCH] 1.0.6.26: fix sb-posix build on win32 * patch from Yaroslav Kavenchuk --- contrib/sb-posix/interface.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/sb-posix/interface.lisp b/contrib/sb-posix/interface.lisp index c740dad..37ad3c8 100644 --- a/contrib/sb-posix/interface.lisp +++ b/contrib/sb-posix/interface.lisp @@ -288,7 +288,8 @@ (defun getcwd () (flet ((%getcwd (buffer size) (alien-funcall - (extern-alien "getcwd" (function c-string (* t) int)) + (extern-alien #-win32 "getcwd" + #+win32 "_getcwd" (function c-string (* t) int)) buffer size))) (with-growing-c-string (buf size) (let ((result (%getcwd buf size))) diff --git a/version.lisp-expr b/version.lisp-expr index 416dcd1..659238c 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.6.25" +"1.0.6.26" -- 1.7.10.4