diff mbox

putty: fix musl build for 64-bit targets

Message ID a70938c68e64db7ca57acc45cf20ebc0601c2805.1463944636.git.baruch@tkos.co.il
State Accepted
Headers show

Commit Message

Baruch Siach May 22, 2016, 7:17 p.m. UTC
Add upstream patch fixing MinGW build that also fixes musl build. Both of them
do not provide __uint64_t on 64-bit targets.

Fixes:
http://autobuild.buildroot.net/results/8f7/8f7683b2e204249c37690bae915208298ea94490/
http://autobuild.buildroot.net/results/f28/f2836f3a7e27f74f5adf38d1769b9b047d59c385/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 ...02-Fix-__uint128_t-compile-error-on-MinGW.patch | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 package/putty/0002-Fix-__uint128_t-compile-error-on-MinGW.patch

Comments

Thomas Petazzoni May 22, 2016, 7:37 p.m. UTC | #1
Hello,

On Sun, 22 May 2016 22:17:16 +0300, Baruch Siach wrote:
> Add upstream patch fixing MinGW build that also fixes musl build. Both of them
> do not provide __uint64_t on 64-bit targets.
> 
> Fixes:
> http://autobuild.buildroot.net/results/8f7/8f7683b2e204249c37690bae915208298ea94490/
> http://autobuild.buildroot.net/results/f28/f2836f3a7e27f74f5adf38d1769b9b047d59c385/
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  ...02-Fix-__uint128_t-compile-error-on-MinGW.patch | 30 ++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>  create mode 100644 package/putty/0002-Fix-__uint128_t-compile-error-on-MinGW.patch

Applied to master, thanks.

Thomas
diff mbox

Patch

diff --git a/package/putty/0002-Fix-__uint128_t-compile-error-on-MinGW.patch b/package/putty/0002-Fix-__uint128_t-compile-error-on-MinGW.patch
new file mode 100644
index 000000000000..514b6298d93c
--- /dev/null
+++ b/package/putty/0002-Fix-__uint128_t-compile-error-on-MinGW.patch
@@ -0,0 +1,30 @@ 
+From 3377ea57f5d333d65d44a1130161396782389e88 Mon Sep 17 00:00:00 2001
+From: Tim Kosse <tim.kosse@filezilla-project.org>
+Date: Tue, 11 Aug 2015 09:43:34 +0200
+Subject: [PATCH] Fix  __uint128_t compile error on MinGW.
+
+MinGW has __uint128_t, but not __uint64_t.
+
+Signed-off-by: Baruch Siach <baruch@tkos.co.il>
+---
+Patch status: upstream commit 3377ea57f5
+
+ sshbn.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/sshbn.h b/sshbn.h
+index a043241eea67..9366f614ae4c 100644
+--- a/sshbn.h
++++ b/sshbn.h
+@@ -26,7 +26,7 @@
+  * using the same 'two machine registers' kind of code generation that
+  * 32-bit targets use for 64-bit ints. If we have one of these, we can
+  * use a 64-bit BignumInt and a 128-bit BignumDblInt. */
+-typedef __uint64_t BignumInt;
++typedef unsigned long long BignumInt;
+ typedef __uint128_t BignumDblInt;
+ #define BIGNUM_INT_MASK  0xFFFFFFFFFFFFFFFFULL
+ #define BIGNUM_TOP_BIT   0x8000000000000000ULL
+-- 
+2.8.1
+