From 0e5103e11f50d963c989b3ba6190685479935447 Mon Sep 17 00:00:00 2001 From: Grzegorz Antoniak Date: Sat, 27 Oct 2018 07:45:56 +0200 Subject: [PATCH] Added missing config.h entries for libb2 Symbols added: HAVE_LIBB2, HAVE_BLAKE2_H RAR5 reader sources expect those symbols to be defined when using system libb2, but the symbols were missing. This commit fixes that. --- build/cmake/config.h.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index 04f938d3f..aed77f9a8 100644 --- a/build/cmake/config.h.in +++ b/build/cmake/config.h.in @@ -680,6 +680,12 @@ typedef uint64_t uintmax_t; /* Define to 1 if you have the `bz2' library (-lbz2). */ #cmakedefine HAVE_LIBBZ2 1 +/* Define to 1 if you have the `b2' library (-lb2). */ +#cmakedefine HAVE_LIBB2 1 + +/* Define to 1 if you have the header file. */ +#cmakedefine HAVE_BLAKE2_H 1 + /* Define to 1 if you have the `charset' library (-lcharset). */ #cmakedefine HAVE_LIBCHARSET 1 -- 2.47.2