comparison configure.ac @ 3611:5ab3fc53d7a5

Add enable/disable-stable configure option * Makefile.in: set stable build dependant on configure variable ENABLE_STABLE. * configure.ac: add --enable-stable arg. * src/octave.mk: set devel octave to 3.8.2-rc1
author John Donoghue
date Tue, 10 Jun 2014 11:35:10 -0400
parents e04d9375cd5f
children 154b7f3af5eb
comparison
equal deleted inserted replaced
3610:566fd51378f2 3611:5ab3fc53d7a5
137 [AS_HELP_STRING([--enable-openblas], 137 [AS_HELP_STRING([--enable-openblas],
138 [(EXPERIMENTAL) enable use of openblas in Octave])], 138 [(EXPERIMENTAL) enable use of openblas in Octave])],
139 [if test "$enableval" = yes; then ENABLE_OPENBLAS=yes; fi], []) 139 [if test "$enableval" = yes; then ENABLE_OPENBLAS=yes; fi], [])
140 AC_SUBST(ENABLE_OPENBLAS) 140 AC_SUBST(ENABLE_OPENBLAS)
141 141
142 ENABLE_STABLE=yes
143 AC_ARG_ENABLE(stable,
144 [AS_HELP_STRING([--enable-stable],
145 [Enable stable build of octave instead of devel octave])],
146 [if test "$enableval" = no; then ENABLE_STABLE=no; fi], [])
147 AC_SUBST(ENABLE_STABLE)
148
142 ### Default is to cross compile for mingw. 149 ### Default is to cross compile for mingw.
143 150
144 echo $host_alias 151 echo $host_alias
145 if test -n "$host_alias"; then 152 if test -n "$host_alias"; then
146 MXE_SYSTEM=$host_alias 153 MXE_SYSTEM=$host_alias