commit 4a15b3169645a397fc8193f91737604538ac077e
parent c0559b97b506626f6a21f8009475f18522166aa7
Author: Nick Mathewson <nickm@torproject.org>
Date: Tue, 30 May 2017 13:33:49 -0400
Merge remote-tracking branch 'argonblue/bug22413'
Diffstat:
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/changes/bug22413 b/changes/bug22413
@@ -0,0 +1,4 @@
+ o Minor bugfixes (directory protocol):
+ - Check for libzstd >= 1.1 because older versions lack the
+ necessary streaming API. Fixes bug 22413; bugfix on
+ 0.3.1.1-alpha.
diff --git a/configure.ac b/configure.ac
@@ -856,7 +856,7 @@ if test "x$enable_zstd" = "xno"; then
have_zstd=no;
else
PKG_CHECK_MODULES([ZSTD],
- [libzstd],
+ [libzstd >= 1.1],
have_zstd=yes,
have_zstd=no)