From: Andreas Fuchs Date: Sun, 19 Oct 2003 17:52:13 +0000 (+0000) Subject: 0.8.4.33: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=65ab4f8dd3ecf0d39e66ebb48012c79ec3e4ac90;p=sbcl.git 0.8.4.33: Add a check for working CONSTANTLY in OpenMCL (some CVS versions throw an error) --- diff --git a/src/cold/ansify.lisp b/src/cold/ansify.lisp index 5bfa6d2..04a2794 100644 --- a/src/cold/ansify.lisp +++ b/src/cold/ansify.lisp @@ -78,6 +78,11 @@ #+(and cmu alpha) (unless (ignore-errors (read-from-string "1.0l0")) (error "CMUCL on Alpha can't read floats in the format \"1.0l0\". Patch your core file~%~%")) + +#+openmcl +(unless (ignore-errors (funcall (constantly t) 1 2 3)) + (error "please find a binary that understands CONSTANTLY to build from")) + ;;;; general non-ANSI-ness diff --git a/version.lisp-expr b/version.lisp-expr index 746df8e..a7aab0c 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.4.32" +"0.8.4.33"