aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorMatthias Wolf <matthias@rheinwolf.de>2021-04-30 15:44:50 +0000
committerRene Ladan <rene@FreeBSD.org>2021-04-30 15:44:50 +0000
commita0ca21b89d3f42a6f47a7ce2e9f74948051c467a (patch)
tree6a4bf740927ea5f3947f01ba1bb9d14ae5c2a0dd /www
parent6c2178c18db81849eb20c54096af22b4e6e538ad (diff)
downloadports-a0ca21b89d3f42a6f47a7ce2e9f74948051c467a.tar.gz
ports-a0ca21b89d3f42a6f47a7ce2e9f74948051c467a.zip
www/chromium: add back patch for aarch64
MFH: 2021Q2
Diffstat (limited to 'www')
-rw-r--r--www/chromium/files/patch-third__party_zlib_BUILD.gn20
1 files changed, 20 insertions, 0 deletions
diff --git a/www/chromium/files/patch-third__party_zlib_BUILD.gn b/www/chromium/files/patch-third__party_zlib_BUILD.gn
new file mode 100644
index 000000000000..154d7beef05e
--- /dev/null
+++ b/www/chromium/files/patch-third__party_zlib_BUILD.gn
@@ -0,0 +1,20 @@
+--- third_party/zlib/BUILD.gn.orig 2021-04-22 11:59:36.597280000 +0200
++++ third_party/zlib/BUILD.gn 2021-04-30 13:06:24.267005000 +0200
+@@ -108,6 +108,8 @@
+ defines = [ "CRC32_ARMV8_CRC32" ]
+ if (is_android) {
+ defines += [ "ARMV8_OS_ANDROID" ]
++ } else if (is_bsd) {
++ defines += [ "ARMV8_OS_FREEBSD" ]
+ } else if (is_linux || is_chromeos) {
+ defines += [ "ARMV8_OS_LINUX" ]
+ } else if (is_mac) {
+@@ -385,7 +387,7 @@
+ ]
+ }
+
+- if (is_apple || is_android || is_nacl) {
++ if (is_apple || is_android || is_nacl || is_bsd) {
+ # Mac, Android and the BSDs don't have fopen64, ftello64, or fseeko64. We
+ # use fopen, ftell, and fseek instead on these systems.
+ defines = [ "USE_FILE32API" ]