Skip to content

Commit 0d88d6d

Browse files
committed
exit(1) if check fails
1 parent a5ea379 commit 0d88d6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5427,7 +5427,7 @@ PKG_CHECK_MODULES([LIBZSTD], [libzstd], [have_libzstd=yes], [
54275427
// if you update the minimum version, you should update the compile
54285428
// check in Modules/_zstd/_zstdmodule.h
54295429
#if ZSTD_VERSION_NUMBER < 10405
5430-
#error "_zstd module requires zstd v1.4.5+"
5430+
exit(1);
54315431
#endif
54325432
])], [have_libzstd=yes], [have_libzstd=no])
54335433
], [have_libzstd=no])

0 commit comments

Comments
 (0)