diff options
author | Grzegorz Antoniak <ga@anadoxin.org> | 2018-10-27 07:45:56 +0200 |
---|---|---|
committer | Grzegorz Antoniak <ga@anadoxin.org> | 2018-10-27 07:45:56 +0200 |
commit | 0e5103e11f50d963c989b3ba6190685479935447 (patch) | |
tree | be2d6c7f06bf04f50be490ef3db46e5b549ca0c1 | |
parent | d661131393def793a9919d1e3fd54c9992888bd6 (diff) | |
download | libarchive-0e5103e11f50d963c989b3ba6190685479935447.tar.gz |
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.
-rw-r--r-- | build/cmake/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index 04f938d3..aed77f9a 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 <blake2.h> header file. */ +#cmakedefine HAVE_BLAKE2_H 1 + /* Define to 1 if you have the `charset' library (-lcharset). */ #cmakedefine HAVE_LIBCHARSET 1 |