From: Christophe Rhodes Date: Wed, 6 Aug 2003 12:38:11 +0000 (+0000) Subject: 0.8.2.17: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=c89c1e254d3861b8221ebff88db5a64effe3e727;p=sbcl.git 0.8.2.17: Oops. Fix x86/thread build (broken by Solaris build fix): ... include sbcl.h before using LISP_FEATURE_SB_THREAD --- diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 56ba99c..b154611 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -13,6 +13,8 @@ * files for more information. */ +#include "sbcl.h" + #include #include #include @@ -37,7 +39,6 @@ #include "signal.h" #include "runtime.h" -#include "sbcl.h" #include "alloc.h" #include "vars.h" #include "globals.h" diff --git a/version.lisp-expr b/version.lisp-expr index c19b354..b5787e3 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".) -"0.8.2.16" +"0.8.2.17"