diff options
author | tharvik <tharvik@users.noreply.github.com> | 2020-09-01 01:08:06 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-13 00:43:57 +0000 |
commit | 458bf42448b5f431a1a9a14b4b3fa3b2ee35d445 (patch) | |
tree | 1e1c4c5a45b65f78b68876a7610605610582f872 /net-libs | |
parent | net-vpn/i2p: drop 0.9.44 (diff) | |
download | gentoo-458bf42448b5f431a1a9a14b4b3fa3b2ee35d445.tar.gz gentoo-458bf42448b5f431a1a9a14b4b3fa3b2ee35d445.tar.bz2 gentoo-458bf42448b5f431a1a9a14b4b3fa3b2ee35d445.zip |
net-libs/nativebiginteger: drop old patch
Closes: https://bugs.gentoo.org/728808
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Valérian Rousset <tharvik@users.noreply.github.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch b/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch deleted file mode 100644 index cdb8c7f64cbb..000000000000 --- a/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- c/jcpuid/src/jcpuid.c 2008-10-06 09:44:53.000000000 -0400 -+++ c/jcpuid/src/jcpuid.c.new2 2010-12-27 09:41:53.000000000 -0500 -@@ -19,6 +19,7 @@ - mov d, edx - } - #else -+ #ifdef _LP64 - //Use GCC assembler notation - asm - ( -@@ -29,6 +30,20 @@ - "=d"(d) - :"a"(iFunction) - ); -+ #elif defined(__i386__) -+ asm -+ ( -+ "pushl %%ebx\n\t" -+ "cpuid\n\t" -+ "movl %%ebx, %%edi\n\t" -+ "popl %%ebx" -+ : "=a" (a), -+ "=D" (b), -+ "=c" (c), -+ "=d" (d) -+ :"a"(iFunction) -+ ); -+ #endif - #endif - return (*env)->NewObject(env, clsResult,constructor,a,b,c,d); - } |