diff options
author | 2022-09-27 21:11:35 -0400 | |
---|---|---|
committer | 2022-09-27 22:34:35 -0400 | |
commit | b80ea0bacff1001fdc8726473d3ff51664aec389 (patch) | |
tree | b1ae4e7e1790d51f08d7baf4651f12bc8d58f83f /net-misc/hashcash/files | |
parent | net-misc/hashcash: EAPI7->8, respect AR (diff) | |
download | gentoo-b80ea0bacff1001fdc8726473d3ff51664aec389.tar.gz gentoo-b80ea0bacff1001fdc8726473d3ff51664aec389.tar.bz2 gentoo-b80ea0bacff1001fdc8726473d3ff51664aec389.zip |
net-misc/hashcash: fix build with clang16
Closes: https://bugs.gentoo.org/870466
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-misc/hashcash/files')
-rw-r--r-- | net-misc/hashcash/files/hashcash-1.22-clang16.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-misc/hashcash/files/hashcash-1.22-clang16.patch b/net-misc/hashcash/files/hashcash-1.22-clang16.patch new file mode 100644 index 000000000000..1ec15b110555 --- /dev/null +++ b/net-misc/hashcash/files/hashcash-1.22-clang16.patch @@ -0,0 +1,11 @@ +https://bugs.gentoo.org/870466 +--- a/sha1.h ++++ b/sha1.h +@@ -59,4 +59,7 @@ + void SHA1_Init_With_IV( SHA1_ctx*, const byte[ SHA1_DIGEST_BYTES ] ); + ++void SHA1_Transform( word32 H[ SHA1_DIGEST_WORDS ], ++ const byte M[ SHA1_INPUT_BYTES ] ); ++ + #endif + |