From 874586929c175a28728a632d4b2123365bd63851 Mon Sep 17 00:00:00 2001 From: NIIMI Satoshi Date: Tue, 31 Jul 2007 03:10:46 +0000 Subject: [PATCH] 1.0.8.12: Fix tests/foreign.test.sh on FreeBSD7/amd64 --- tests/foreign.test.sh | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/foreign.test.sh b/tests/foreign.test.sh index 6d78488..2f1f405 100644 --- a/tests/foreign.test.sh +++ b/tests/foreign.test.sh @@ -27,7 +27,7 @@ testfilestem=${TMPDIR:-/tmp}/sbcl-foreign-test-$$ build_so() { echo building $1.so - if [ "`uname -m`" = x86_64 ]; then + if [ "`uname -m`" = x86_64 -o "`uname -m`" = amd64 ]; then CFLAGS="$CFLAGS -fPIC" fi if [ "`uname`" = Darwin ]; then diff --git a/version.lisp-expr b/version.lisp-expr index 846fcb0..f3dc9d7 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.8.11" +"1.0.8.12" -- 1.7.10.4