From 26772483a9f3e4d5222cba7b8a2a9873294ca3ab Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 3 Sep 2010 13:28:34 +0000 Subject: [PATCH] 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. --- make-host-1.lisp | 3 +++ version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/make-host-1.lisp b/make-host-1.lisp index 549c50d..23fe972 100644 --- a/make-host-1.lisp +++ b/make-host-1.lisp @@ -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 diff --git a/version.lisp-expr b/version.lisp-expr index bd22065..246fe56 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".) -"1.0.42.30" +"1.0.42.31" -- 1.7.10.4