microcode/mit_scheme_native_code.m4: Copy master's aclocal.m4.
authorMatt Birkholz <puck@birchwood-abbey.net>
Sat, 4 Feb 2017 00:49:19 +0000 (17:49 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Sat, 4 Feb 2017 00:49:19 +0000 (17:49 -0700)
src/microcode/mit_scheme_native_code.m4

index 4b1b789045a4054fbb1dfaf49ce3e3c895306d91..0d43d87f84bfe06c97e771fc442fd0766f740cb0 100644 (file)
@@ -3,11 +3,19 @@
 AC_DEFUN([MIT_SCHEME_NATIVE_CODE],[
 _mit_scheme_native_code_spec=$1
 _mit_scheme_native_code_host_cpu=$2
-case ${_mit_scheme_native_code_host_cpu} in
-i?86)
-    AC_CHECK_DECL([__x86_64__],[_mit_scheme_native_code_host_cpu=x86_64])
+
+case ${_mit_scheme_native_code_spec} in
+yes|YES|y|Y)
+    case ${_mit_scheme_native_code_host_cpu} in
+    i?86)
+       AC_CHECK_DECL([__x86_64__],
+                     [_mit_scheme_native_code_host_cpu=x86_64],
+                     [_mit_scheme_native_code_host_cpu=i386])
+       ;;
+    esac
     ;;
 esac
+
 AC_MSG_CHECKING([for native-code support])
 case ${_mit_scheme_native_code_spec} in
 yes|YES|y|Y)