From: Chris Hanson Date: Wed, 9 Nov 2011 06:55:37 +0000 (-0800) Subject: Merge from release-9.1 branch. X-Git-Tag: release-9.2.0~338 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f6ab072b7f18b9d15b8240de41c4e00bc490a372;p=mit-scheme.git Merge from release-9.1 branch. --- f6ab072b7f18b9d15b8240de41c4e00bc490a372 diff --cc src/configure.ac index 5298d5764,3c794692f..fb7558d24 --- a/src/configure.ac +++ b/src/configure.ac @@@ -42,17 -48,22 +48,27 @@@ AC_ARG_ENABLE([native-code] AC_ARG_ENABLE([host-scheme-test], AS_HELP_STRING([--enable-host-scheme-test], [Test for working scheme on build host [[if necessary]]])) - if test -f lib/all.com; then - : ${enable_host_scheme_test=no} + if test x"${IS_NATIVE_RELEASE}" = xyes || test -f lib/all.com; then + : ${enable_host_scheme_test=no} + else + : ${enable_host_scheme_test=yes} + fi + + AC_ARG_WITH([default-target], + AS_HELP_STRING([--with-default-target], + [Set the default make target [[all]]])) + if test x"${IS_NATIVE_RELEASE}" = xyes; then + : ${with_default_target=compile-microcode} else - : ${enable_host_scheme_test=yes} + : ${with_default_target=all} fi + DEFAULT_TARGET=${with_default_target} +AC_ARG_WITH([default-target], + AS_HELP_STRING([--with-default-target], + [Set the default make target [[all]]])) +DEFAULT_TARGET=${with_default_target=all} + AC_CANONICAL_HOST MIT_SCHEME_NATIVE_CODE([${enable_native_code}],[${host_cpu}])