From: Christophe Rhodes Date: Wed, 6 Aug 2003 09:56:51 +0000 (+0000) Subject: 0.8.2.16: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2b967f60e803c9d25b4d61b979298bad9a9f5003;p=sbcl.git 0.8.2.16: Two build fixes ... GNU Make is gnumake under Darwin (from Michael Hudson sbcl-devel 2003-07-30) ... conditionalize ptrace inclusion on SB_THREAD (from Carlos Ungil sbcl-devel 2003-08-05) --- diff --git a/find-gnumake.sh b/find-gnumake.sh index c4186fe..6f6e84d 100644 --- a/find-gnumake.sh +++ b/find-gnumake.sh @@ -8,6 +8,9 @@ find_gnumake() { elif [ -x "`which gmake`" ] ; then # "gmake" is the preferred name in *BSD. GNUMAKE=gmake + elif [ -x "`which gnumake`" ] ; then + # MacOS X aka Darwin + GNUMAKE=gnumake elif [ "GNU Make" = "`make -v | head -n 1 | cut -b 0-8`" ]; then GNUMAKE=make else diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 2c8bdb6..56ba99c 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -24,7 +24,9 @@ #include #include #include +#ifdef LISP_FEATURE_SB_THREAD #include +#endif #include #include diff --git a/version.lisp-expr b/version.lisp-expr index 140d45f..c19b354 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.15" +"0.8.2.16"