12345678910111213141516171819202122 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Shelley Vohr <[email protected]>
- 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
- index ecf2a095bcb9b1443e299ecdf9eaa429afa3409b..39bd91489ee96b250cdb6a7f8bb4cea2af33f705 100644
- --- a/third_party/zlib/BUILD.gn
- +++ b/third_party/zlib/BUILD.gn
- @@ -321,6 +321,10 @@ component("zlib") {
- 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).
|