summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug224134
-rw-r--r--configure.ac2
2 files changed, 5 insertions, 1 deletions
diff --git a/changes/bug22413 b/changes/bug22413
new file mode 100644
index 0000000000..5b522f1254
--- /dev/null
+++ 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
index 59908c71aa..064644ec0d 100644
--- 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)