From fc95b11faef7885dec1dd9e7d550945ea3a2dc0d Mon Sep 17 00:00:00 2001 From: Moonchild Date: Thu, 20 Jan 2022 16:28:08 +0000 Subject: [PATCH] Issue #1859 - Part 2: xz-embedded build config changes Always build as static lib for use in updater. --- modules/xz-embedded/moz.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/xz-embedded/moz.build b/modules/xz-embedded/moz.build index fa1e5fc468..9806dca1ea 100644 --- a/modules/xz-embedded/moz.build +++ b/modules/xz-embedded/moz.build @@ -29,4 +29,7 @@ elif '86' in CONFIG['TARGET_CPU']: DEFINES['XZ_USE_CRC64'] = 1 +if CONFIG['OS_ARCH'] == 'WINNT': + USE_STATIC_LIBS = True + Library('xz-embedded')