# HG changeset patch # User Mike Miller # Date 1504220013 25200 # Node ID cc4433ef0b89563a797da71ebe80fd114da270fd # Parent ce2a3053aabcd2b227aa63a2c6dbc542efc12bdc configure: build with Qt 5 by default now * configure.ac: Make ENABLE_QT5=yes the default, specify --disable-qt5 to build with Qt 4. diff -r ce2a3053aabc -r cc4433ef0b89 configure.ac --- a/configure.ac Thu Aug 31 15:51:39 2017 -0700 +++ b/configure.ac Thu Aug 31 15:53:33 2017 -0700 @@ -289,13 +289,13 @@ AC_SUBST(ENABLE_DEVEL_TOOLS) AC_ARG_ENABLE([qt5], - [AS_HELP_STRING([--enable-qt5], - [Enable compile of GNU octave using Qt5 (Experimental)])], + [AS_HELP_STRING([--disable-qt5], + [Build GNU Octave using Qt 4 instead of the default Qt 5])], [case "$enableval" in no) ENABLE_QT5=no ;; yes) ENABLE_QT5=yes ;; *) AC_MSG_ERROR([bad value "$enableval" for --enable-qt5]) ;; - esac], [ENABLE_QT5=no]) + esac], [ENABLE_QT5=yes]) AC_SUBST(ENABLE_QT5) # install dependancy package docs (or not to save space)