From: SupervisedThinking Date: Fri, 19 Mar 2021 18:52:45 +0000 (+0100) Subject: meson: fix build by adding missing files X-Git-Tag: v1.4.10~20^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edf2b1176df9302f6023d129e6379ffbe781885c;p=thirdparty%2Fzstd.git meson: fix build by adding missing files fixes https://github.com/facebook/zstd/issues/2519 --- diff --git a/build/meson/lib/meson.build b/build/meson/lib/meson.build index 17806c8dc..004888753 100644 --- a/build/meson/lib/meson.build +++ b/build/meson/lib/meson.build @@ -22,6 +22,7 @@ libzstd_sources = [join_paths(zstd_rootdir, 'lib/common/entropy_common.c'), join_paths(zstd_rootdir, 'lib/common/threading.c'), join_paths(zstd_rootdir, 'lib/common/pool.c'), join_paths(zstd_rootdir, 'lib/common/zstd_common.c'), + join_paths(zstd_rootdir, 'lib/common/zstd_trace.c'), join_paths(zstd_rootdir, 'lib/common/error_private.c'), join_paths(zstd_rootdir, 'lib/common/xxhash.c'), join_paths(zstd_rootdir, 'lib/compress/hist.c'),