summaryrefslogtreecommitdiff
path: root/www/qt5-webengine/files/patch-mkspecs_features_functions.prf
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2019-11-23 17:30:05 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2019-11-23 17:30:05 +0000
commit16d89059b0ea0bfe94e1cfba1b56acda7ffa050c (patch)
tree024d913f94b78358fd2061a545c883c50fc92b85 /www/qt5-webengine/files/patch-mkspecs_features_functions.prf
parentdevel/py-venusian: Update version 1.2.0=>3.0.0 (diff)
www/qt5-webengine: fix build on powerpc64 (elfv2 only)
Tested with otter-browser on my Talos. Approved by: tcberner (mentor, maintainer, earlier version) Differential Revision: https://reviews.freebsd.org/D22184
Notes
Notes: svn path=/head/; revision=518257
Diffstat (limited to 'www/qt5-webengine/files/patch-mkspecs_features_functions.prf')
-rw-r--r--www/qt5-webengine/files/patch-mkspecs_features_functions.prf12
1 files changed, 10 insertions, 2 deletions
diff --git a/www/qt5-webengine/files/patch-mkspecs_features_functions.prf b/www/qt5-webengine/files/patch-mkspecs_features_functions.prf
index e21d21db79ec..3b2619581de5 100644
--- a/www/qt5-webengine/files/patch-mkspecs_features_functions.prf
+++ b/www/qt5-webengine/files/patch-mkspecs_features_functions.prf
@@ -1,7 +1,7 @@
Include the freebsd.pri file provided by the port, to pass FreeBSD specific
settings to gn.
---- mkspecs/features/functions.prf.orig 2019-01-16 22:42:58 UTC
+--- mkspecs/features/functions.prf.orig 2019-05-24 09:01:39 UTC
+++ mkspecs/features/functions.prf
@@ -82,6 +82,7 @@ defineReplace(gnArgs) {
linux: include($$QTWEBENGINE_ROOT/src/core/config/linux.pri)
@@ -11,7 +11,15 @@ settings to gn.
isEmpty(gn_args): error(No gn_args found please make sure you have valid configuration.)
return($$gn_args)
}
-@@ -101,6 +102,7 @@ defineReplace(gnOS) {
+@@ -94,6 +95,7 @@ defineReplace(gnArch) {
+ contains(qtArch, "arm64"): return(arm64)
+ contains(qtArch, "mips"): return(mipsel)
+ contains(qtArch, "mips64"): return(mips64el)
++ contains(qtArch, "power64"): return(ppc64)
+ return(unknown)
+ }
+
+@@ -101,6 +103,7 @@ defineReplace(gnOS) {
macos: return(mac)
win32: return(win)
linux: return(linux)