]> sigrok.org Git - sigrok-util.git/blob - cross-compile/android/android-qt.patch
sigrok-native-msys2: Fix a typo.
[sigrok-util.git] / cross-compile / android / android-qt.patch
1 diff --git a/qtbase/mkspecs/features/qt_common.prf b/qtbase/mkspecs/features/qt_common.prf
2 --- a/qtbase/mkspecs/features/qt_common.prf     2014-05-16 18:41:54.964880350 +0200
3 +++ b/qtbase/mkspecs/features/qt_common.prf     2014-05-16 18:44:21.529590747 +0200
4 @@ -77,7 +77,9 @@
5              QMAKE_CXXFLAGS_WARN_ON += -Wno-error=strict-overflow
6  
7              # Work-around for bug https://code.google.com/p/android/issues/detail?id=58135
8 -            android: QMAKE_CXXFLAGS_WARN_ON += -Wno-error=literal-suffix
9 +            contains(ver, "4\\.8") {
10 +                android: QMAKE_CXXFLAGS_WARN_ON += -Wno-error=literal-suffix
11 +            }
12          }
13      }
14      unset(ver)
15 --- a/qttools/src/qdbus/qdbus.pro       2015-02-17 05:57:17.000000000 +0100
16 +++ b/qttools/src/qdbus/qdbus.pro       2015-04-29 15:55:19.740997627 +0200
17 @@ -1,3 +1,5 @@
18  TEMPLATE = subdirs
19 -SUBDIRS = qdbus
20 -qtHaveModule(widgets): SUBDIRS += qdbusviewer
21 +!android:!ios:!qnx:!wince*:!winrt* {
22 +    SUBDIRS = qdbus
23 +    qtHaveModule(widgets): SUBDIRS += qdbusviewer
24 +}