e8dbdbd100
Although this package has been removed from the official release packages since Qt5.6.0, it is still available for users to build it from source. This is useful for platforms without GPU since its successor (QtWebEngine) requires OpenGL support. The package now matches the community-based meta-qt5 Yocto layer, using the exact same revision of the qtwebkit source from github: https://github.com/meta-qt5/meta-qt5/commit/e434995a Here is the project source tree: https://github.com/qtproject/qtwebkit All the patches have been pulled from Yocto as well. Since we are now using the source from the git repository, we need to create an empty .git/ folder to force the headers re-generation. https://github.com/meta-qt5/meta-qt5/blob/jethro/recipes-qt/qt5/qt5.inc#L33 Note that GPLv3 license option has been added with this release. Reviewed-by: Julien Corjon <corjon.j@ecagroup.com> Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> [Thomas: fix license to be LGPLv2.1+, not LGPLv2+.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 1735a8484ef9ae336f8d607b56bda64c8af10c79 Mon Sep 17 00:00:00 2001
|
|
From: Trevor Woerner <trevor.woerner@linaro.org>
|
|
Date: Fri, 7 Feb 2014 04:07:17 +0100
|
|
Subject: [PATCH] qtwebkit: fix QA issue (bad RPATH)
|
|
|
|
Building qtwebkit causes a QA issue such that QtWebPluginProcess and
|
|
QtWebProcess contain bad RPATHs which point into the build location. This fix
|
|
adds a patch to not include the rpath.prf which causes this problem.
|
|
|
|
Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
|
|
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
|
|
|
|
Downloaded from:
|
|
https://github.com/meta-qt5/meta-qt5/blob/krogoth/recipes-qt/qt5/qtwebkit/
|
|
0001-qtwebkit-fix-QA-issue-bad-RPATH.patch
|
|
|
|
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
|
|
---
|
|
Tools/qmake/mkspecs/features/unix/default_post.prf | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/Tools/qmake/mkspecs/features/unix/default_post.prf b/Tools/qmake/mkspecs/features/unix/default_post.prf
|
|
index fd66af6..ef754c3 100644
|
|
--- a/Tools/qmake/mkspecs/features/unix/default_post.prf
|
|
+++ b/Tools/qmake/mkspecs/features/unix/default_post.prf
|
|
@@ -61,7 +61,6 @@ linux-*g++* {
|
|
}
|
|
}
|
|
|
|
-contains(TEMPLATE, app): CONFIG += rpath
|
|
|
|
CONFIG(debug, debug|release)|force_debug_info {
|
|
# Make ld not cache the symbol tables of input files in memory to avoid memory exhaustion during the linking phase.
|
|
--
|
|
2.7.0
|
|
|