comparison configure.ac @ 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 0db33a326eec
children 79bddf470912
comparison
equal deleted inserted replaced
4306:689cce14e824 4307:d15e1b63b01f
78 AC_ARG_WITH([ccache], 78 AC_ARG_WITH([ccache],
79 [AS_HELP_STRING([--with-ccache], [use ccache (default: no)])], 79 [AS_HELP_STRING([--with-ccache], [use ccache (default: no)])],
80 [if test "$withval" = yes; then USE_CCACHE=yes; fi], []) 80 [if test "$withval" = yes; then USE_CCACHE=yes; fi], [])
81 AC_SUBST(USE_CCACHE) 81 AC_SUBST(USE_CCACHE)
82 82
83 ENABLE_WINDOWS_64=no 83 ENABLE_WINDOWS_64=yes
84 AC_ARG_ENABLE(windows-64, 84 AC_ARG_ENABLE(windows-64,
85 [AS_HELP_STRING([--enable-windows-64], 85 [AS_HELP_STRING([--disable-windows-64],
86 [build a Windows 64 cross compiler; resulting build will work only on 64-bit Windows systems])], 86 [don't build a Windows 64 cross compiler])],
87 [if test "$enableval" = yes; then ENABLE_WINDOWS_64=yes; fi], []) 87 [if test "$enableval" = no; then ENABLE_WINDOWS_64=no; fi], [])
88 88
89 ENABLE_64=yes 89 ENABLE_64=yes
90 AC_ARG_ENABLE(64, 90 AC_ARG_ENABLE(64,
91 [AS_HELP_STRING([--disable-64], 91 [AS_HELP_STRING([--disable-64],
92 [don't use 64-bit integers for array dimensions and indexing])], 92 [don't use 64-bit integers for array dimensions and indexing])],