Skip to content

Commit

Permalink
0.9.18.56:
Browse files Browse the repository at this point in the history
        Fix SB-POSIX build on Windows (broken by largefile support). Thanks
        to Yaroslav Kavenchuk.
  • Loading branch information
jsnell committed Nov 16, 2006
1 parent a7674bb commit 833de5a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion contrib/sb-posix/interface.lisp
Expand Up @@ -73,7 +73,11 @@
;;; filesystem access
(defmacro define-call* (name &rest arguments)
#-win32 `(define-call ,name ,@arguments)
#+win32 `(define-call ,(concatenate 'string "_" name) ,@arguments))
#+win32 `(define-call ,(if (consp name)
`(,(concatenate 'string "_" (car name))
,@(cdr name))
(concatenate 'string "_" name))
,@arguments))

(define-call* "access" int minusp (pathname filename) (mode int))
(define-call* "chdir" int minusp (pathname filename))
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -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".)
"0.9.18.55"
"0.9.18.56"

0 comments on commit 833de5a

Please sign in to comment.