
* Fix patch applicability * Combine patches for missing qt3 headers and remove krell variant The variant should have always been applied. * Restrict QT patches to actual applicable versions/situations - I researched the associated patches so now their `when=` should more closely match when they're actually needed. - I sorted the patch order so they're grouped by version requirement - I renamed the patches so they're listed by version requirements
21 lines
486 B
Diff
21 lines
486 B
Diff
--- a/configure.orig 2018-09-18 07:02:33.866633000 +1000
|
|
+++ b/configure 2018-09-18 07:05:21.935194000 +1000
|
|
@@ -7708,7 +7708,7 @@
|
|
|
|
# Check gcc's version
|
|
case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
|
|
- 4*)
|
|
+ [4-8]*)
|
|
;;
|
|
3.4*)
|
|
canBuildQtXmlPatterns="no"
|
|
@@ -7729,7 +7729,7 @@
|
|
*-g++*)
|
|
# Check gcc's version
|
|
case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
|
|
- 4*|3.4*)
|
|
+ [4-8]*|3.4*)
|
|
;;
|
|
3.3*)
|
|
canBuildWebKit="no"
|