From 07d0cf7fe8476add89af98a4aeebb8437f07103e Mon Sep 17 00:00:00 2001 From: Alastair Bridgewater Date: Fri, 27 Nov 2009 16:59:28 +0000 Subject: [PATCH] 1.0.32.39: Win32 build fix * Because both sbcl and define a boolean type, grovel-headers was failing to build on win32. Copied the kludge for working around this issue from src/runtime/runtime.h to tools-for-build/grovel-headers.c. --- tools-for-build/grovel-headers.c | 4 ++++ version.lisp-expr | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tools-for-build/grovel-headers.c b/tools-for-build/grovel-headers.c index b8c34b6..6c42bd1 100644 --- a/tools-for-build/grovel-headers.c +++ b/tools-for-build/grovel-headers.c @@ -22,9 +22,13 @@ #include #include #ifdef _WIN32 + /* KLUDGE: From src/runtime/runtime.h, avoid double definition of + boolean. We really should clean up our act on this one. */ + #define boolean rpcndr_boolean #define WIN32_LEAN_AND_MEAN #include #include + #undef boolean #else #include #include diff --git a/version.lisp-expr b/version.lisp-expr index 5d28905..5dba829 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.32.38" +"1.0.32.39" -- 1.7.10.4