From 06a7b5647e11a8ddf69b1c3d3ded6a8ba28b923e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 2 Mar 2018 15:59:12 +0000 Subject: gentoo resync : 02.03.2018 --- .../files/nativebiginteger-0.6.4-asmfix.patch | 31 ---------------------- .../files/nativebiginteger-0.6.4-ldflags.patch | 17 ------------ 2 files changed, 48 deletions(-) delete mode 100644 net-libs/nativebiginteger/files/nativebiginteger-0.6.4-asmfix.patch delete mode 100644 net-libs/nativebiginteger/files/nativebiginteger-0.6.4-ldflags.patch (limited to 'net-libs/nativebiginteger/files') diff --git a/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-asmfix.patch b/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-asmfix.patch deleted file mode 100644 index 04cfa599413a..000000000000 --- a/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-asmfix.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- jcpuid/src/jcpuid.c 2008-10-06 09:44:53.000000000 -0400 -+++ 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); - } diff --git a/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-ldflags.patch b/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-ldflags.patch deleted file mode 100644 index 5d3c84cd641e..000000000000 --- a/net-libs/nativebiginteger/files/nativebiginteger-0.6.4-ldflags.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile 2008-11-06 21:09:54.000000000 +0100 -+++ Makefile.new 2010-12-27 14:26:45.000000000 +0100 -@@ -1,11 +1,11 @@ - libjbigi: - cd jbigi && rm -f jbigi.o libjbigi.so && $(CC) $(CFLAGS) -c -I. -Ijbigi/include -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux \ -- jbigi/src/jbigi.c && $(CC) -shared -Wl,-soname,libjbigi.so -I. -Ijbigi/include -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -lgmp \ -- -o libjbigi.so jbigi.o -+ jbigi/src/jbigi.c && $(CC) ${LDFLAGS} -shared -Wl,-soname,libjbigi.so jbigi.o -I. -Ijbigi/include -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -lgmp \ -+ -o libjbigi.so - - - libjcpuid: -- cd jcpuid && $(CC) $(CFLAGS) -shared -Wl,-soname,libjbigi-x86-linux.so -I. -Iinclude -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux \ -+ cd jcpuid && $(CC) $(CFLAGS) ${LDFLAGS} -shared -Wl,-soname,libjbigi-x86-linux.so -I. -Iinclude -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux \ - src/*.c -o libjcpuid-x86-linux.so - - install: -- cgit v1.2.3