]> git.lyx.org Git - lyx.git/commitdiff
Make Qt5 the default for building
authorEnrico Forestieri <forenr@lyx.org>
Sun, 26 Aug 2018 13:02:59 +0000 (15:02 +0200)
committerEnrico Forestieri <forenr@lyx.org>
Sun, 26 Aug 2018 13:02:59 +0000 (15:02 +0200)
Until now, building with Qt5 required using --enable-qt5.
This is no more necessary. To build with Qt4 one should now
use --disable-qt5 or, equivalently, --enable-qt5=no.

config/lyxinclude.m4

index 2c1a9af12a8e9285424e9a13011612dd6b4c5197..b5ecb098174bedf1e83d2f7549272da0a1068662 100644 (file)
@@ -63,14 +63,18 @@ AC_MSG_RESULT([$withval])
 ])
 
 
-dnl Check whether to configure for Qt5. Default is Qt4.
+dnl Check whether to configure for Qt4 or Qt5. Default is Qt5.
 dnl
 AC_DEFUN([LYX_CHECK_QT5],[
-AC_MSG_CHECKING([whether Qt5 is requested])
+AC_MSG_CHECKING([whether Qt5 is disabled])
 AC_ARG_ENABLE([qt5],
-  [  --enable-qt5            use Qt5 for building],
-  USE_QT5=$enableval, USE_QT5=no)
-AC_MSG_RESULT([$USE_QT5])
+  [  --disable-qt5           don't use Qt5 for building],
+  USE_QT5=$enableval, USE_QT5=yes)
+if test x$USE_QT5 != xno ; then
+  AC_MSG_RESULT([no])
+else
+  AC_MSG_RESULT([yes])
+fi
 AC_SUBST([USE_QT5])
 ])