Merge remote-tracking branch 'argonblue/bug22413'

This commit is contained in:
Nick Mathewson 2017-05-30 13:33:49 -04:00
commit 4a15b31696
2 changed files with 5 additions and 1 deletions

4
changes/bug22413 Normal file
View File

@ -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.

View File

@ -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)