From 4c1ebff623522bd07e09133c5a6d7c804f75f73f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 29 Apr 2007 18:38:26 +0000 Subject: [PATCH] More tweaks to make liarc.stamp work right. --- v7/src/compiler/configure | 6 +++++- v7/src/microcode/configure.ac | 8 ++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/v7/src/compiler/configure b/v7/src/compiler/configure index 03066900b..f537fe59d 100755 --- a/v7/src/compiler/configure +++ b/v7/src/compiler/configure @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: configure,v 1.13 2007/04/04 05:08:18 riastradh Exp $ +# $Id: configure,v 1.14 2007/04/29 18:38:01 cph Exp $ # # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, # 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, @@ -44,6 +44,10 @@ while test $# -gt 0; do esac done +if test "x${MACHINE}" = x && test -f ../liarc.stamp; then + MACHINE=C +fi + if test "x${MACHINE}" = x; then case `./config.guess` in alpha-* | alphaev[56]-* | alphaev56-* | alphapca56-*) diff --git a/v7/src/microcode/configure.ac b/v7/src/microcode/configure.ac index 3fd036e77..76dd44fe7 100644 --- a/v7/src/microcode/configure.ac +++ b/v7/src/microcode/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([MIT/GNU Scheme microcode], [15.1], [bug-mit-scheme@gnu.org], [mit-scheme]) -AC_REVISION([$Id: configure.ac,v 1.42 2007/04/28 01:58:14 cph Exp $]) +AC_REVISION([$Id: configure.ac,v 1.43 2007/04/29 18:38:26 cph Exp $]) AC_CONFIG_SRCDIR([boot.c]) AC_CONFIG_HEADERS([config.h]) AC_PROG_MAKE_SET @@ -132,7 +132,11 @@ AC_ARG_ENABLE([debugging], AC_ARG_ENABLE([native-code], AS_HELP_STRING([--enable-native-code], [Support native compiled code if available [[yes]]])) -: ${enable_native_code='yes'} +if test -f ../liarc.stamp; then + : ${enable_native_code='c'} +else + : ${enable_native_code='yes'} +fi AC_ARG_WITH([openssl], AS_HELP_STRING([--with-openssl], -- 2.25.1