Update of /cvsroot/sbcl/sbcl
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12840
Modified Files:
make-host-1.lisp version.lisp-expr
Log Message:
1.0.42.31: fix build with clisp 2.49
Patch by Josh Elsasser, lp#629144.
Previously, if a clisp 2.49 host was used, the build failed during
make-host-1 in src/code/cross-sap.lisp with several "redefining SETF
expander" errors. The same *suppress-check-redefinition* fix used in
make-host-2 is enough to placate clisp and allow the build to finish
successfully.
Index: make-host-1.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/make-host-1.lisp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- make-host-1.lisp 5 May 2009 17:10:29 -0000 1.3
+++ make-host-1.lisp 3 Sep 2010 13:28:34 -0000 1.4
@@ -15,6 +15,9 @@
(set-dispatch-macro-character #\# #\+ #'she-reader)
(set-dispatch-macro-character #\# #\- #'she-reader)
+;; Supress function/macro redefinition warnings under clisp.
+#+clisp (setf custom:*suppress-check-redefinition* t)
+
(load-or-cload-xcompiler #'host-cload-stem)
;;; Let's check that the type system, and various other things, are
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.5002
retrieving revision 1.5003
diff -u -d -r1.5002 -r1.5003
--- version.lisp-expr 3 Sep 2010 13:24:49 -0000 1.5002
+++ version.lisp-expr 3 Sep 2010 13:28:34 -0000 1.5003
@@ -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".)
-"1.0.42.30"
+"1.0.42.31"
|