changeset 4461:cc4433ef0b89

configure: build with Qt 5 by default now * configure.ac: Make ENABLE_QT5=yes the default, specify --disable-qt5 to build with Qt 4.
author Mike Miller <mtmiller@octave.org>
date Thu, 31 Aug 2017 15:53:33 -0700
parents ce2a3053aabc
children 8b731cde3aaa
files configure.ac
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)