From d84bbd11405e2bdc7f260747da8ec008566c1b9c Mon Sep 17 00:00:00 2001 From: xavi92 Date: Sun, 27 Oct 2024 07:44:59 +0000 Subject: [PATCH] librhash/CMakeLists.txt: Update sources/headers lists The experimental branch that introduced this CMakeLists.txt [1] is probably outdated and does not reflect the current tree structure. Note that test_lib.{c,h} and test_utils.{c,h} have been intentionally left out since they are not meant to be part of the rhash library. [1]: https://github.com/rhash/RHash/pull/103 git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9568 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 81dfe170c24d4e7b4d7311835a30538fd741b8ab Former-commit-id: 7deddae1e14c1037161844a4459b6b1c08ff5e8b --- .../patches/rhash/librhash/CMakeLists.txt | 63 ++++++++++--------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt b/packaging/3rdParty-devel/patches/rhash/librhash/CMakeLists.txt index 1699dbdc8..315961326 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")