From 17c4e8486b40a6ac1c1dc5094d2e706f4cf229ed Mon Sep 17 00:00:00 2001 From: jimwise Date: Thu, 3 Mar 2011 19:50:21 +0000 Subject: [PATCH] 1.0.46.22: fix sb-posix readdir on SunOS/x86 for the time being, disable :largefile on SunOS/x86. Unfortunately, sb-grovel cannot navigate the somewhat sticky way in which struct dirent gets setup for a 32-bit host with 64-bit ino_t on SunOS, so sb-posix:readdir breaks :largefile works fine on SunOS x86_64, and will be re-enabled on x86 after I get some more time to fight with the alien def for struct dirent --- make-config.sh | 4 +++- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/make-config.sh b/make-config.sh index 6fda706..0101f23 100644 --- a/make-config.sh +++ b/make-config.sh @@ -252,7 +252,9 @@ case "$sbcl_os" in printf ' :unix' >> $ltf printf ' :elf' >> $ltf printf ' :sunos' >> $ltf - printf ' :largefile' >> $ltf + if [ $sbcl_arch = "x86-64" ]; then + printf ' :largefile' >> $ltf + fi if [ $sbcl_arch = "x86" ] || [ $sbcl_arch = "x86-64" ]; then printf ' :sb-lutex' >> $ltf fi diff --git a/version.lisp-expr b/version.lisp-expr index 004fc83..2285ed1 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -20,4 +20,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.46.21" +"1.0.46.22" -- 1.7.10.4