Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1:/tmp/cvs-serv17389
Modified Files:
find-gnumake.sh version.lisp-expr
Log Message:
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)
Index: find-gnumake.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/find-gnumake.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- find-gnumake.sh 28 Jul 2003 08:10:32 -0000 1.1
+++ find-gnumake.sh 6 Aug 2003 09:56:51 -0000 1.2
@@ -8,6 +8,9 @@
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
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.1144
retrieving revision 1.1145
diff -u -d -r1.1144 -r1.1145
--- version.lisp-expr 5 Aug 2003 14:11:38 -0000 1.1144
+++ version.lisp-expr 6 Aug 2003 09:56:51 -0000 1.1145
@@ -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"
|