From: Richard M Kreuter Date: Tue, 25 Mar 2008 21:24:24 +0000 (+0000) Subject: 1.0.15.37: Windows fixes. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=d07e355f50300d64b282cb9c71fa88441c0b9a3d;p=sbcl.git 1.0.15.37: Windows fixes. * tools-for-build/grovel-headers.c: add a grovel for EINTR * contrib/sb-posix/constants.lisp: feature-out the ALIEN-FLOCK structure. --- diff --git a/contrib/sb-posix/constants.lisp b/contrib/sb-posix/constants.lisp index 271baf6..7c52c67 100644 --- a/contrib/sb-posix/constants.lisp +++ b/contrib/sb-posix/constants.lisp @@ -362,6 +362,7 @@ (:integer f-wrlck "F_WRLCK" nil t) (:integer f-unlck "F_UNLCK" nil t) + #-win32 (:structure alien-flock ("struct flock" (short type "short" "l_type") diff --git a/tools-for-build/grovel-headers.c b/tools-for-build/grovel-headers.c index 43ce773..4fb9345 100644 --- a/tools-for-build/grovel-headers.c +++ b/tools-for-build/grovel-headers.c @@ -208,6 +208,7 @@ main(int argc, char *argv[]) defconstant("enoent", ENOENT); defconstant("eexist", EEXIST); + defconstant("eintr", EINTR); defconstant("s-ifmt", S_IFMT); defconstant("s-ifdir", S_IFDIR); diff --git a/version.lisp-expr b/version.lisp-expr index 954d985..4b1d4f7 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.15.36" +"1.0.15.37"