aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 3 insertions, 11 deletions
diff --git a/configure b/configure
index 83a34ac6..3527e617 100755
--- a/configure
+++ b/configure
@@ -3901,17 +3901,9 @@ fi
if test x"$oa_include_gcl" != xyes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking CPU precision as seen by $AXIOM_LISP" >&5
$as_echo_n "checking CPU precision as seen by $AXIOM_LISP... " >&6; }
- # Almost all Lisp systems we support put the relevant information
- # on the *FEATURES* list. Except ECL.
- case $axiom_lisp_flavor in
- ecl)
- features_expr='(progn (require :cmp) (eval (find-symbol "*COMPILER-FEATURES*" :c)))'
- ;;
- *)
- features_expr='*features*'
- ;;
- esac
- case `echo $features_expr | $AXIOM_LISP` in
+ # All Lisp systems we support put the relevant information
+ # on the *FEATURES* list.
+ case `echo '*features*' | $AXIOM_LISP` in
*X86-64*|*X86_64*|*WORD-SIZE=64*|*64-BIT*)
# PORTME: the pattern above covers only the supported free Lisps, i.e.
# GCL, SBCL, CLisp, ECL and Clozure CL.