2020-06-17 22:57:12 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Mon, 1 Jun 2020 15:30:47 -0800
|
|
|
|
Subject: fix: export zlib symbols
|
|
|
|
|
|
|
|
This patch sets ZLIB_DLL so that we properly export zlib symbols.
|
|
|
|
|
|
|
|
diff --git a/third_party/zlib/BUILD.gn b/third_party/zlib/BUILD.gn
|
2023-03-15 09:20:32 +00:00
|
|
|
index d20c468260c86bd031f06ddc7b419f186adc2fca..2c1479ba23fca6d3a6d5f39f02c94b37b6b1477e 100644
|
2020-06-17 22:57:12 +00:00
|
|
|
--- a/third_party/zlib/BUILD.gn
|
|
|
|
+++ b/third_party/zlib/BUILD.gn
|
2023-03-15 09:20:32 +00:00
|
|
|
@@ -326,6 +326,10 @@ component("zlib") {
|
2020-06-17 22:57:12 +00:00
|
|
|
defines = []
|
|
|
|
deps = []
|
|
|
|
|
|
|
|
+ if (is_win) {
|
|
|
|
+ defines += [ "ZLIB_DLL" ]
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (!use_x86_x64_optimizations && !use_arm_neon_optimizations) {
|
|
|
|
# Apparently android_cronet bot builds with NEON disabled and
|
|
|
|
# we also should disable optimizations for iOS@x86 (a.k.a. simulator).
|