From dc49e6a364bcac61634154cb419e7990ab137ea6 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 31 Jan 2011 19:16:07 -0700 Subject: [PATCH] fix configure reporting of --disable-float --- src/configure | 2 +- src/racket/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configure b/src/configure index 52334fdb96..93be470962 100755 --- a/src/configure +++ b/src/configure @@ -2227,7 +2227,7 @@ show_explicitly_enabled "${enable_sgcdebug}" "SGC debug mode" show_explicitly_enabled "${enable_compact}" "Compact 3m GC" show_explicitly_enabled "${enable_backtrace}" "3m GC backtraces" -show_explicitly_enabled "${enable_float}" "Single-precision floats" +show_explicitly_disabled "${enable_float}" "Single-precision floats" show_explicitly_enabled "${enable_floatinstead}" "Single-precision default floats" show_explicitly_enabled "${enable_pthread}" "pthreads" diff --git a/src/racket/configure.ac b/src/racket/configure.ac index 4fa6b5fc55..861fce62ca 100644 --- a/src/racket/configure.ac +++ b/src/racket/configure.ac @@ -290,7 +290,7 @@ show_explicitly_enabled "${enable_sgcdebug}" "SGC debug mode" show_explicitly_enabled "${enable_compact}" "Compact 3m GC" show_explicitly_enabled "${enable_backtrace}" "3m GC backtraces" -show_explicitly_enabled "${enable_float}" "Single-precision floats" +show_explicitly_disabled "${enable_float}" "Single-precision floats" show_explicitly_enabled "${enable_floatinstead}" "Single-precision default floats" show_explicitly_enabled "${enable_pthread}" "pthreads"