comparison configure.ac @ 3887:768c5d4c5b4e

new configure option: --enable-qhull-no-strict-aliasing-flag
author John W. Eaton <jwe@octave.org>
date Fri, 10 Apr 2015 13:50:50 -0400
parents 58935b4de51f
children 2db17a8585e6
comparison
equal deleted inserted replaced
3886:588d2942b538 3887:768c5d4c5b4e
155 [AS_HELP_STRING([--disable-openblas], 155 [AS_HELP_STRING([--disable-openblas],
156 [Disable use of openblas in Octave])], 156 [Disable use of openblas in Octave])],
157 [if test "$enableval" = no; then ENABLE_OPENBLAS=no; fi], []) 157 [if test "$enableval" = no; then ENABLE_OPENBLAS=no; fi], [])
158 AC_SUBST(ENABLE_OPENBLAS) 158 AC_SUBST(ENABLE_OPENBLAS)
159 159
160 ENABLE_QHULL_NO_STRICT_ALIASING_FLAG=no
161 AC_ARG_ENABLE([qhull-no-strict-aliasing-flag],
162 [AS_HELP_STRING([--enable-qhull-no-strict-aliasing-flag],
163 [Compile Qhull with -fno-strict-aliasing flag])],
164 [if test "$enableval" = yes; then
165 ENABLE_QHULL_NO_STRICT_ALIASING_FLAG=yes;
166 fi], [])
167 AC_SUBST(ENABLE_QHULL_NO_STRICT_ALIASING_FLAG)
168
160 ENABLE_OCTAVE=stable 169 ENABLE_OCTAVE=stable
161 AC_ARG_ENABLE([octave], 170 AC_ARG_ENABLE([octave],
162 [AS_HELP_STRING([--enable-octave=stable], 171 [AS_HELP_STRING([--enable-octave=stable],
163 [Enable a specific build of octave (stable, alpha, default)])], 172 [Enable a specific build of octave (stable, alpha, default)])],
164 [], [enableval=$ENABLE_OCTAVE]) 173 [], [enableval=$ENABLE_OCTAVE])