]> git.pld-linux.org Git - packages/gwenhywfar.git/blob - gwenhywfar-qt5.patch
- updated to 5.6.0
[packages/gwenhywfar.git] / gwenhywfar-qt5.patch
1 diff -up gwenhywfar-5.6.0/m4/ax_have_qt.m4.orig gwenhywfar-5.6.0/m4/ax_have_qt.m4
2 --- gwenhywfar-5.6.0/m4/ax_have_qt.m4.orig      2021-05-06 10:50:13.840745665 +0200
3 +++ gwenhywfar-5.6.0/m4/ax_have_qt.m4   2021-05-06 10:53:38.396014533 +0200
4 @@ -76,8 +76,8 @@ AC_DEFUN([AX_HAVE_QT],
5  
6    AC_MSG_CHECKING(for Qt)
7    # If we have Qt5 or later in the path, we're golden
8 -  ver=`$QT_QMAKE --version | grep -o "Qt version ."`
9 -  if test "$ver" ">" "Qt version 4"; then
10 +  ver="$($QT_QMAKE --version | sed -ne 's/.*Qt version \([[0-9]]\).*/\1/p')"
11 +  if test "$ver" -gt 4; then
12      have_qt=yes
13      # This pro file dumps qmake's variables, but it only works on Qt 5 or later
14      am_have_qt_pro=`mktemp`
This page took 0.201803 seconds and 3 git commands to generate.