diff --git a/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt b/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt index 1699dbdc..31596132 100644 --- a/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt +++ b/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt @@ -10,60 +10,63 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON CACHE BOOL "Export all symbols when buil option(USE_OPENSSL "Enable OpenSSL (optimized hash functions) support") option(OPENSSL_RUNTIME "Load OpenSSL at runtime if present") -set(SOURCE_FILES "algorithms.c" +set(SOURCE_FILES "aich.c" + "algorithms.c" + "blake2b.c" + "blake2s.c" "byte_order.c" - "plug_openssl.c" - "rhash.c" - "rhash_timing.c" - "rhash_torrent.c" - "aich.c" "crc32.c" "ed2k.c" "edonr.c" - "hex.c" - "md4.c" - "md5.c" - "sha1.c" - "sha256.c" - "sha512.c" - "sha3.c" - "ripemd-160.c" "gost12.c" "gost94.c" "has160.c" + "hex.c" + "md4.c" + "md5.c" + "plug_openssl.c" + "rhash.c" + "rhash_torrent.c" + "ripemd-160.c" + "sha1.c" + "sha256.c" + "sha3.c" + "sha512.c" "snefru.c" "tiger.c" "tiger_sbox.c" - "tth.c" "torrent.c" + "tth.c" + "util.c" "whirlpool.c" "whirlpool_sbox.c") -set(HEADER_FILES "algorithms.h" +set(HEADER_FILES "aich.h" + "algorithms.h" + "blake2b.h" + "blake2s.h" "byte_order.h" - "plug_openssl.h" - "rhash.h" - "rhash_timing.h" - "rhash_torrent.h" - "aich.h" "crc32.h" "ed2k.h" "edonr.h" - "hex.h" - "md4.h" - "md5.h" - "sha1.h" - "sha256.h" - "sha512.h" - "sha3.h" - "ripemd-160.h" "gost12.h" "gost94.h" "has160.h" + "hex.h" + "md4.h" + "md5.h" + "plug_openssl.h" + "rhash.h" + "rhash_torrent.h" + "ripemd-160.h" + "sha1.h" + "sha256.h" + "sha3.h" + "sha512.h" "snefru.h" "tiger.h" - "tth.h" "torrent.h" + "tth.h" "ustd.h" "util.h" "whirlpool.h")