From 0157fbb15cc5775732082b255e43bd3f2037316f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 9 Mar 2010 17:28:52 -0800 Subject: [PATCH] Disable --enable-host-scheme-test by default. --- src/configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/configure.ac b/src/configure.ac index 14980dd5d..8518a3ad7 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([MIT/GNU Scheme], [7.7.91], [bug-mit-scheme@gnu.org], [mit-scheme]) +AC_INIT([MIT/GNU Scheme], [9.0.1], [bug-mit-scheme@gnu.org], [mit-scheme]) AC_CONFIG_SRCDIR([microcode/boot.c]) AC_CONFIG_AUX_DIR([microcode]) AC_PROG_MAKE_SET @@ -31,12 +31,12 @@ USA. AC_ARG_ENABLE([native-code], AS_HELP_STRING([--enable-native-code], [Support native compiled code if available [[yes]]])) -: ${enable_native_code='yes'} +: ${enable_native_code=yes} AC_ARG_ENABLE([host-scheme-test], AS_HELP_STRING([--enable-host-scheme-test], - [Test for working scheme on build host [[yes]]])) -: ${enable_host_scheme_test=yes} + [Test for working scheme on build host [[no]]])) +: ${enable_host_scheme_test=no} AC_CANONICAL_HOST -- 2.25.1