diff options
author | joerg <joerg> | 2014-11-21 14:11:19 +0000 |
---|---|---|
committer | joerg <joerg> | 2014-11-21 14:11:19 +0000 |
commit | 2eb036192dc6f6d9e9c144087148ad6ae5cbd966 (patch) | |
tree | 681c8b9c3c7ccb8d04af125210059dfed46c2962 /security | |
parent | ccf3e434085233f5844292c5efd39be75ba94395 (diff) | |
download | pkgsrc-2eb036192dc6f6d9e9c144087148ad6ae5cbd966.tar.gz |
Just because GAS accepts something doesn't make it valid syntax.
Diffstat (limited to 'security')
-rw-r--r-- | security/nettle/distinfo | 3 | ||||
-rw-r--r-- | security/nettle/patches/patch-arm_v6_sha256-compress.asm | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/security/nettle/distinfo b/security/nettle/distinfo index 887613133b7..1a0872f3b64 100644 --- a/security/nettle/distinfo +++ b/security/nettle/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.10 2013/11/26 09:22:19 martin Exp $ +$NetBSD: distinfo,v 1.11 2014/11/21 14:11:19 joerg Exp $ SHA1 (nettle-2.7.1.tar.gz) = e7477df5f66e650c4c4738ec8e01c2efdb5d1211 RMD160 (nettle-2.7.1.tar.gz) = f5c9d950c1e55210fa1659b907378814c54312d3 Size (nettle-2.7.1.tar.gz) = 1558863 bytes SHA1 (patch-Makefile.in) = af3ca13235c4b11ca3238b19802332d33c5c54e0 SHA1 (patch-aa) = 2332668b077a6e3a1add603c87f60167755554ec +SHA1 (patch-arm_v6_sha256-compress.asm) = 6c8676f00df04836eb68dcef7d77c843dcea2859 SHA1 (patch-config.make.in) = 27baf63fb161be3224f448c52200cef057bf64ed SHA1 (patch-testsuite_Makefile.in) = ade95c10fcad37c461c06e0731550d65d4b20509 SHA1 (patch-tools_Makefile.in) = f074fc1bf0e2b7ded88fd65ec303e2be407f0217 diff --git a/security/nettle/patches/patch-arm_v6_sha256-compress.asm b/security/nettle/patches/patch-arm_v6_sha256-compress.asm new file mode 100644 index 00000000000..5b6f191fd1d --- /dev/null +++ b/security/nettle/patches/patch-arm_v6_sha256-compress.asm @@ -0,0 +1,22 @@ +$NetBSD: patch-arm_v6_sha256-compress.asm,v 1.1 2014/11/21 14:11:19 joerg Exp $ + +--- arm/v6/sha256-compress.asm.orig 2014-11-20 20:28:47.000000000 +0000 ++++ arm/v6/sha256-compress.asm +@@ -112,7 +112,7 @@ define(<NOEXPN>, < + PROLOGUE(_nettle_sha256_compress) + push {r4,r5,r6,r7,r8,r10,r11,r14} + sub sp, sp, #68 +- str STATE, [sp, +#64] ++ str STATE, [sp, #64] + + C Load data up front, since we don't have enough registers + C to load and shift on-the-fly +@@ -185,7 +185,7 @@ PROLOGUE(_nettle_sha256_compress) + EXPN(15) ROUND(SB,SC,SD,SE,SF,SG,SH,SA) + bne .Loop2 + +- ldr STATE, [sp, +#64] ++ ldr STATE, [sp, #64] + C No longer needed registers + ldm STATE, {r1,r2,r12,r14} + add SA, SA, r1 |