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)
   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
 
 #include <sys/param.h>
 #include <sys/stat.h>
 #include <signal.h>
+#ifdef LISP_FEATURE_SB_THREAD
 #include <sys/ptrace.h>
+#endif
 #include <sched.h>
 #include <errno.h>
 
 
 ;;; 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"