comparison configure.ac @ 3229:1cbee4743e97

Use consistant yes and no as the enable options for configure.ac * configure.ac: Change MXE_NATIVE_BUILD and ENABLE_OPENBLAS defaults from false to no.
author John Donoghue <john.donoghue@ieee.org>
date Sat, 10 Aug 2013 16:10:01 -0400
parents c56f388f1297
children 78adb5b1881d
comparison
equal deleted inserted replaced
3228:681331ee9a2f 3229:1cbee4743e97
78 AC_ARG_ENABLE([jit], 78 AC_ARG_ENABLE([jit],
79 [AS_HELP_STRING([--disable-jit], [Disable Octave JIT compiler])], 79 [AS_HELP_STRING([--disable-jit], [Disable Octave JIT compiler])],
80 [if test "$enableval" = no; then ENABLE_JIT=no; fi], []) 80 [if test "$enableval" = no; then ENABLE_JIT=no; fi], [])
81 AC_SUBST(ENABLE_JIT) 81 AC_SUBST(ENABLE_JIT)
82 82
83 MXE_NATIVE_BUILD=false 83 MXE_NATIVE_BUILD=no
84 AC_ARG_ENABLE([native-build], 84 AC_ARG_ENABLE([native-build],
85 [AS_HELP_STRING([--enable-native-build], 85 [AS_HELP_STRING([--enable-native-build],
86 [Enable native build (default is cross compile)])], 86 [Enable native build (default is cross compile)])],
87 [if test "$enableval" = yes; then MXE_NATIVE_BUILD=yes; fi], []) 87 [if test "$enableval" = yes; then MXE_NATIVE_BUILD=yes; fi], [])
88 AC_SUBST(MXE_NATIVE_BUILD) 88 AC_SUBST(MXE_NATIVE_BUILD)
112 AC_ARG_ENABLE([pic-flag], 112 AC_ARG_ENABLE([pic-flag],
113 [AS_HELP_STRING([--enable-pic-flag], [Compile with PIC flag])], 113 [AS_HELP_STRING([--enable-pic-flag], [Compile with PIC flag])],
114 [if test "$enableval" = yes; then USE_PIC_FLAG=yes; fi], []) 114 [if test "$enableval" = yes; then USE_PIC_FLAG=yes; fi], [])
115 AC_SUBST(USE_PIC_FLAG) 115 AC_SUBST(USE_PIC_FLAG)
116 116
117 ENABLE_OPENBLAS=false 117 ENABLE_OPENBLAS=no
118 AC_ARG_ENABLE([openblas], 118 AC_ARG_ENABLE([openblas],
119 [AS_HELP_STRING([--enable-openblas], 119 [AS_HELP_STRING([--enable-openblas],
120 [(EXPERIMENTAL) enable use of openblas in Octave])], 120 [(EXPERIMENTAL) enable use of openblas in Octave])],
121 [if test "$enableval" = yes; then ENABLE_OPENBLAS=yes; fi], []) 121 [if test "$enableval" = yes; then ENABLE_OPENBLAS=yes; fi], [])
122 AC_SUBST(ENABLE_OPENBLAS) 122 AC_SUBST(ENABLE_OPENBLAS)