From: Nikodemus Siivola Date: Sat, 14 May 2011 09:43:28 +0000 (+0000) Subject: 1.0.48.17: hopefully fix build on win32 X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=12a0ad4e13fd09f7809d0eb9066498c447674fbb;p=sbcl.git 1.0.48.17: hopefully fix build on win32 Regression from 1.0.48.7. Add missing S_IFMT macro wrappers to win32 build. (Untested on win32 as of yet.) --- diff --git a/tools-for-build/grovel-headers.c b/tools-for-build/grovel-headers.c index 1b61f98..e7a1b70 100644 --- a/tools-for-build/grovel-headers.c +++ b/tools-for-build/grovel-headers.c @@ -223,7 +223,10 @@ main(int argc, char *argv[]) defconstant("eagain", EAGAIN); defconstant("s-ifmt", S_IFMT); + defconstant("s-ififo", S_IFIFO); + defconstant("s-ifchr", S_IFCHR); defconstant("s-ifdir", S_IFDIR); + defconstant("s-ifblk", S_IFBLK); defconstant("s-ifreg", S_IFREG); DEFTYPE("ino-t", ino_t); diff --git a/version.lisp-expr b/version.lisp-expr index ff8ac68..f3e31f0 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -20,4 +20,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.48.16" +"1.0.48.17"