changeset 4307:d15e1b63b01f

make --enable-windows-64 the default
author John W. Eaton <jwe@octave.org>
date Sat, 31 Dec 2016 09:03:07 -0500
parents 689cce14e824
children 411ddca4207f
files configure.ac
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Sat Dec 31 09:02:11 2016 -0500
+++ b/configure.ac	Sat Dec 31 09:03:07 2016 -0500
@@ -80,11 +80,11 @@
   [if test "$withval" = yes; then USE_CCACHE=yes; fi], [])
 AC_SUBST(USE_CCACHE)
 
-ENABLE_WINDOWS_64=no
+ENABLE_WINDOWS_64=yes
 AC_ARG_ENABLE(windows-64,
-  [AS_HELP_STRING([--enable-windows-64],
-    [build a Windows 64 cross compiler; resulting build will work only on 64-bit Windows systems])],
-  [if test "$enableval" = yes; then ENABLE_WINDOWS_64=yes; fi], [])
+  [AS_HELP_STRING([--disable-windows-64],
+    [don't build a Windows 64 cross compiler])],
+  [if test "$enableval" = no; then ENABLE_WINDOWS_64=no; fi], [])
 
 ENABLE_64=yes
 AC_ARG_ENABLE(64,