]> git.lyx.org Git - lyx.git/blobdiff - config/qt.m4
Update sk.po
[lyx.git] / config / qt.m4
index 6e2d6bcd3fcf762b6cb21544078a3c4d05ee4625..2cd4263f06c29376e04e40d749d0bedffc01e753 100644 (file)
@@ -26,7 +26,10 @@ AC_DEFUN([QT_CHECK_COMPILE],
                CXXFLAGS="$CXXFLAGS $QT_INCLUDES $QT_LDFLAGS"
                qt_corelibs="-lQtCore -lQtCore4"
                qt_guilibs="'-lQtCore -lQtGui' '-lQtCore4 -lQtGui4'"
-               if test $USE_QT5 = "yes" ; then
+               if test $USE_QT6 = "yes" ; then
+                   qt_corelibs="-lQt6Core -lQt6Core5Compat"
+                   qt_guilibs="-lQt6Core -lQt6Core5Compat -lQt6Concurrent -lQt6Gui -lQt6Svg -lQt6Widgets"
+               elif test $USE_QT5 = "yes" ; then
                    qt_corelibs="-lQt5Core"
                    qt_guilibs="-lQt5Core -lQt5Concurrent -lQt5Gui -lQt5Svg -lQt5Widgets"
                fi
@@ -41,6 +44,7 @@ AC_DEFUN([QT_CHECK_COMPILE],
                qt_cv_libname=
                for libname in $qt_guilibs \
                               '-framework QtCore -framework QtConcurrent -framework QtSvg -framework QtWidgets -framework QtMacExtras -framework QtGui'\
+                              '-framework QtCore -framework QtConcurrent -framework QtCore5Compat -framework QtSvg -framework QtSvgWidgets -framework QtWidgets -framework QtGui'\
                               '-framework QtCore -framework QtGui'
                do
                        QT_TRY_LINK($libname)
@@ -52,7 +56,9 @@ AC_DEFUN([QT_CHECK_COMPILE],
        ])
 
        if test -z "$qt_cv_libname"; then
-               if test x$USE_QT5 = xyes ; then
+               if test x$USE_QT6 = xyes ; then
+                       AC_MSG_RESULT([failed, retrying with Qt5])
+               elif test x$USE_QT5 = xyes ; then
                        AC_MSG_RESULT([failed, retrying with Qt4])
                else
                        AC_MSG_RESULT([failed])
@@ -67,12 +73,17 @@ AC_DEFUN([QT_CHECK_COMPILE],
 AC_DEFUN([QT_FIND_TOOL],
 [
        $1=
-       qt_ext=qt4
-       if test "x$USE_QT5" != "xno" ; then
-               qt_ext=qt5
+       qt_major=4
+       if test "x$USE_QT6" != "xno" ; then
+               qt_major=6
+       elif test "x$USE_QT5" != "xno" ; then
+               qt_major=5
        fi
+       qt_ext="qt$qt_major"
 
-       if test -n "$qt_cv_bin" ; then
+       if test -n "$qt_cv_libexec" ; then
+               AC_PATH_PROGS($1, [$2], [], $qt_cv_libexec)
+       elif test -n "$qt_cv_bin" ; then
                AC_PATH_PROGS($1, [$2], [], $qt_cv_bin)
        elif qtchooser -l 2>/dev/null | grep -q ^$qt_ext\$ >/dev/null ; then
                AC_PATH_PROG(qtc_path, qtchooser, [], [$PATH])
@@ -84,7 +95,7 @@ AC_DEFUN([QT_FIND_TOOL],
                fi
        fi
        if test -z "$$1"; then
-               AC_CHECK_PROGS($1, [$2-$qt_ext $2],[],$PATH)
+               AC_CHECK_PROGS($1, [$2-$qt_ext $2$qt_major $2],[],$PATH)
        fi
        if test -z "$$1"; then
                AC_MSG_ERROR([cannot find $2 binary.])
@@ -161,17 +172,41 @@ AC_DEFUN([QT_DO_IT_ALL],
 
        dnl Check if it possible to do a pkg-config
        PKG_PROG_PKG_CONFIG
-       if test -n "$PKG_CONFIG" ; then
-               QT_DO_PKG_CONFIG
-       fi
-       if test "$pkg_failed" != "no" ; then
-               QT_DO_MANUAL_CONFIG
+       dnl Not possible with Qt6 (QTBUG-86080)
+       if test x$USE_QT6 = xno ; then
+           if test -n "$PKG_CONFIG" ; then
+                   QT_DO_PKG_CONFIG
+           fi
+           if test "$pkg_failed" != "no" ; then
+                   QT_DO_MANUAL_CONFIG
+           fi
+       else
+           QT6_QMAKE_CONFIG
+           if test -z "$QT_LIB"; then
+                   QT_DO_MANUAL_CONFIG
+           fi
        fi
 
        if test -z "$QT_LIB"; then
-         dnl Try again with Qt4 if configuring for Qt5 fails
-         if test x$USE_QT5 = xyes ; then
+         dnl Try again with Qt5 and then Qt4 if configuring for Qt6/5 fails
+         if test x$USE_QT6 = xyes ; then
+               USE_QT6=no
+               USE_QT5=yes
+               AC_SUBST([USE_QT6])
+               AC_SUBST([USE_QT5])
+               if test -n "$PKG_CONFIG" ; then
+                 QT_DO_PKG_CONFIG
+               fi
+               if test "$pkg_failed" != "no" ; then
+                 QT_DO_MANUAL_CONFIG
+               fi
+               if test -z "$QT_LIB"; then
+                 AC_MSG_ERROR([cannot find qt libraries.])
+               fi
+         elif test x$USE_QT5 = xyes ; then
+               USE_QT6=no
                USE_QT5=no
+               AC_SUBST([USE_QT6])
                AC_SUBST([USE_QT5])
                if test -n "$PKG_CONFIG" ; then
                  QT_DO_PKG_CONFIG
@@ -196,9 +231,22 @@ AC_DEFUN([QT_DO_IT_ALL],
        CPPFLAGS="$save_CPPFLAGS $QT_CORE_INCLUDES"
        AC_CHECK_HEADER(QtGui/qtgui-config.h,
          [lyx_qt5_config=QtGui/qtgui-config.h],
-         [lyx_qt5_config=qconfig.h],[-])
+         [lyx_qt5_config=qconfig.h])
+       AC_CHECK_HEADER(QtGui/private/qtgui-config_p.h,
+         [lyx_qt6_config=QtGui/private/qtgui-config_p.h],
+         [lyx_qt6_config=qconfig.h])
        AC_MSG_CHECKING([whether Qt uses the X Window system])
-       if test x$USE_QT5 = xyes ; then
+       if test x$USE_QT6 = xyes ; then
+         dnl FIXME: Check whether defining QPA_XCB makes sense with Qt6
+         AC_PREPROC_IFELSE([AC_LANG_SOURCE([
+           [#include <$lyx_qt6_config>]
+           [#if !defined(QT_FEATURE_xcb) || QT_FEATURE_xcb < 0]
+           [#error Fail]
+           [#endif]])],
+           [AC_MSG_RESULT(yes)
+            AC_DEFINE(QPA_XCB, 1, [Define if Qt uses the X Window System])],
+           [AC_MSG_RESULT(no)])
+       elif test x$USE_QT5 = xyes ; then
          AC_EGREP_CPP(xcb,
            [#include <$lyx_qt5_config>
            QT_QPA_DEFAULT_PLATFORM_NAME],
@@ -225,7 +273,7 @@ AC_DEFUN([QT_DO_IT_ALL],
        QT_FIND_TOOL([QT_RCC], [rcc])
 
        dnl Safety check
-       mocqtver=`$QT_MOC -v 2>&1 | sed -e 's/.*\([[0-9]]\.[[0-9]]*\.[[0-9]]\).*/\1/'`
+       mocqtver=`$QT_MOC -v 2>&1 | sed -e 's/.*\([[0-9]]\.[[0-9]]*\.[[0-9]]*\).*/\1/'`
        if test "x$mocqtver" != "x$QTLIB_VERSION"; then
                LYX_WARNING([The found moc compiler is for Qt $mocqtver but the Qt library version is $QTLIB_VERSION.])
        fi
@@ -319,21 +367,27 @@ AC_DEFUN([QT_DO_MANUAL_CONFIG],
        QT_CORE_LDFLAGS=
        if test -n "$qt_cv_includes"; then
                QT_INCLUDES="-I$qt_cv_includes"
-               for i in Qt QtCore QtGui QtWidgets QtSvg QtConcurrent QtMacExtras; do
+               for i in Qt QtCore QtGui QtWidgets QtSvg QtConcurrent QtSvgWidgets QtCore5Compat QtMacExtras; do
                        QT_INCLUDES="$QT_INCLUDES -I$qt_cv_includes/$i"
+                       if test "$lyx_use_packaging" = "macosx" ; then
+                               QT_INCLUDES="$QT_INCLUDES -I$qt_cv_libraries/${i}.framework/Headers"
+                       fi
                done
                QT_CORE_INCLUDES="-I$qt_cv_includes -I$qt_cv_includes/QtCore"
        fi
        case "$qt_cv_libraries" in
-       *framework*)
-               QT_LDFLAGS="-F$qt_cv_libraries"
-               QT_CORE_LDFLAGS="-F$qt_cv_libraries"
-               ;;
        "")
                ;;
        *)
-               QT_LDFLAGS="-L$qt_cv_libraries"
-               QT_CORE_LDFLAGS="-L$qt_cv_libraries"
+               if test "$lyx_use_packaging" = "macosx" ; then
+                       QT_INCLUDES="$QT_INCLUDES -F$qt_cv_libraries"
+                       QT_CORE_INCLUDES="$QT_CORE_INCLUDES -I$qt_cv_libraries/QtCore.framework/Headers -F$qt_cv_libraries"
+                       QT_LDFLAGS="-F$qt_cv_libraries"
+                       QT_CORE_LDFLAGS="-F$qt_cv_libraries"
+               else
+                       QT_LDFLAGS="-L$qt_cv_libraries"
+                       QT_CORE_LDFLAGS="-L$qt_cv_libraries"
+               fi
                ;;
        esac
        AC_SUBST(QT_INCLUDES)
@@ -351,3 +405,80 @@ AC_DEFUN([QT_DO_MANUAL_CONFIG],
                QT_GET_VERSION
        fi
 ])
+
+AC_DEFUN([QT6_QMAKE_CONFIG],
+[
+       dnl Use first suitable qmake in PATH
+       AC_CHECK_PROGS([QT_QMAKE], [qmake-qt6 qmake6], [qmake], $PATH)
+       AC_MSG_CHECKING([for Qt6])
+       qtver=`$QT_QMAKE -v | grep -o "Qt version ."`
+       if test "$qtver" = "Qt version 6"; then
+           qt_cv_libexec=`$QT_QMAKE -query QT_INSTALL_LIBEXECS`
+           dnl Use a .pro file for getting qmake's variables
+           lyx_test_qt_dir=`mktemp -d`
+           lyx_test_qt_pro="$lyx_test_qt_dir/test.pro"
+           lyx_test_qt_mak="$lyx_test_qt_dir/Makefile"
+           cat > $lyx_test_qt_pro << EOF1
+qtHaveModule(core):            QT += core
+qtHaveModule(core5compat):     QT += core5compat
+percent.target = %
+percent.commands = @echo -n "\$(\$(@))\ "
+QMAKE_EXTRA_TARGETS += percent
+QMAKE_PROJECT_DEPTH = 0
+EOF1
+           $QT_QMAKE $lyx_test_qt_pro -o $lyx_test_qt_mak 1>/dev/null 2>&1
+           QT_CORE_INCLUDES=`cd $lyx_test_qt_dir; make -s -f $lyx_test_qt_mak INCPATH | sed 's/-I\. //g'`
+           qt_corelibs=`cd $lyx_test_qt_dir; make -s -f $lyx_test_qt_mak LIBS`
+           QT_CORE_LDFLAGS=`echo $qt_corelibs | tr ' ' '\n' | grep -e "^-L" | tr '\n' ' '`
+           if test -z "$QT_CORE_LDFLAGS"; then
+               QT_CORE_LDFLAGS="-L`$QT_QMAKE -query QT_INSTALL_LIBS`"
+               QT_CORE_LIB="$qt_corelibs"
+           else
+               QT_CORE_LIB=`echo $qt_corelibs | tr ' ' '\n' | grep -e "^-l" | tr '\n' ' '`
+           fi
+           if test -z "$QT_CORE_LIB"; then
+               AC_MSG_RESULT(no)
+           else
+               AC_SUBST(QT_CORE_INCLUDES)
+               AC_SUBST(QT_CORE_LDFLAGS)
+               AC_SUBST(QT_CORE_LIB)
+               cat > $lyx_test_qt_pro << EOF2
+qtHaveModule(core):            QT += core
+qtHaveModule(core5compat):     QT += core5compat
+qtHaveModule(concurrent):      QT += concurrent
+qtHaveModule(gui):             QT += gui gui-private
+qtHaveModule(svg):             QT += svg
+qtHaveModule(svgwidgets):      QT += svgwidgets
+qtHaveModule(widgets):         QT += widgets
+percent.target = %
+percent.commands = @echo -n "\$(\$(@))\ "
+QMAKE_EXTRA_TARGETS += percent
+QMAKE_PROJECT_DEPTH = 0
+EOF2
+               $QT_QMAKE $lyx_test_qt_pro -o $lyx_test_qt_mak 1>/dev/null 2>&1
+               QT_INCLUDES=`cd $lyx_test_qt_dir; make -s -f $lyx_test_qt_mak INCPATH | sed 's/-I\. //g'`
+               qt_guilibs=`cd $lyx_test_qt_dir; make -s -f $lyx_test_qt_mak LIBS`
+               QT_LDFLAGS=`echo $qt_guilibs | tr ' ' '\n' | grep -e "^-L" | tr '\n' ' '`
+               if test -z "$QT_LDFLAGS"; then
+                   QT_LDFLAGS="-L`$QT_QMAKE -query QT_INSTALL_LIBS`"
+                   QT_LIB="$qt_guilibs"
+               else
+                   QT_LIB=`echo $qt_guilibs | tr ' ' '\n' | grep -v "^-L" | tr '\n' ' '`
+               fi
+               QTLIB_VERSION=`$QT_QMAKE -v | grep "Qt version" | sed -e 's/.*\([[0-9]]\.[[0-9]]*\.[[0-9]]\).*/\1/'`
+               if test -z "$QT_LIB"; then
+                   AC_MSG_RESULT(no)
+               else
+                   AC_MSG_RESULT(yes)
+                   AC_SUBST(QT_INCLUDES)
+                   AC_SUBST(QT_LDFLAGS)
+                   AC_SUBST(QT_LIB)
+                   AC_SUBST(QTLIB_VERSION)
+               fi
+           fi
+           rm $lyx_test_qt_pro $lyx_test_qt_mak $lyx_test_qt_dir/.qmake.stash
+           rmdir $lyx_test_qt_dir
+       else
+           AC_MSG_RESULT(no)
+       fi
+])