diff options
Diffstat (limited to 'net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch')
-rw-r--r-- | net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch b/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch new file mode 100644 index 000000000000..db50cf1c0c04 --- /dev/null +++ b/net-libs/wandio/files/wandio-4.2.3_p1-fix-lz4-check.patch @@ -0,0 +1,12 @@ +https://github.com/wanduow/wandio/pull/51 +--- a/configure.ac ++++ b/configure.ac +@@ -260,7 +260,7 @@ AC_ARG_WITH([lz4], + AS_IF([test "x$with_lz4" != "xno"], + [ + AC_CHECK_LIB(lz4, LZ4F_createDecompressionContext, have_lz4f=yes, have_lz4f=no) +- ], [have_zstd=no]) ++ ], [have_lz4f=no]) + + AS_IF([test "x$have_lz4f" = "xyes"], [ + if test "$ac_cv_lib_lz4_code" != "none required"; then |