From 6419b68c59964b09973615cddb66c7b8bd107bc9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 4 Aug 2022 15:18:25 +0200 Subject: add patch for aarch64 from https://github.com/DomBlack/php-scrypt/pull/59 --- 59.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 59.patch (limited to '59.patch') diff --git a/59.patch b/59.patch new file mode 100644 index 0000000..15aa416 --- /dev/null +++ b/59.patch @@ -0,0 +1,21 @@ +From 16a810d4ec8ce7538afe1537fc162f44536dd83d Mon Sep 17 00:00:00 2001 +From: Cody Logan +Date: Tue, 24 Aug 2021 13:25:57 -0700 +Subject: [PATCH] nosse version needs to include php_scrypt.h as well + +--- + crypto/crypto_scrypt-nosse.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/crypto/crypto_scrypt-nosse.c b/crypto/crypto_scrypt-nosse.c +index 98968b0..114ce0a 100644 +--- a/crypto/crypto_scrypt-nosse.c ++++ b/crypto/crypto_scrypt-nosse.c +@@ -45,6 +45,7 @@ + #include "sysendian.h" + + #include "crypto_scrypt.h" ++#include "php_scrypt.h" + + static void blkcpy(uint8_t *, uint8_t *, size_t); + static void blkxor(uint8_t *, uint8_t *, size_t); -- cgit