diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2017-12-27 10:57:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-27 19:40:29 +0100 |
commit | 8415dcecd1aff3c86173a4edc4dbc84d91e8e542 (patch) | |
tree | 7003bd7b3ea5fe606c7588540d9c1bcc42c0769d /sys-apps | |
parent | games-util/gtkevemon: remove unused patches (diff) | |
download | gentoo-8415dcecd1aff3c86173a4edc4dbc84d91e8e542.tar.gz gentoo-8415dcecd1aff3c86173a4edc4dbc84d91e8e542.tar.bz2 gentoo-8415dcecd1aff3c86173a4edc4dbc84d91e8e542.zip |
sys-apps/iotools: remove unused patches
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/iotools/files/iotools-1.4-cpuid-pic.patch | 22 | ||||
-rw-r--r-- | sys-apps/iotools/files/iotools-1.4-ldflags.patch | 13 |
2 files changed, 0 insertions, 35 deletions
diff --git a/sys-apps/iotools/files/iotools-1.4-cpuid-pic.patch b/sys-apps/iotools/files/iotools-1.4-cpuid-pic.patch deleted file mode 100644 index 3fde16c6ca01..000000000000 --- a/sys-apps/iotools/files/iotools-1.4-cpuid-pic.patch +++ /dev/null @@ -1,22 +0,0 @@ -http://code.google.com/p/iotools/issues/detail?id=2 - ---- a/misc.c -+++ b/misc.c -@@ -149,8 +149,16 @@ cpuid_inline(int cpu, int function, int index, uint32_t *data) - } - - asm volatile ( -+#ifdef __i386__ -+ "xchg %%ebx, %%esi;" /* save ebx (for PIC) */ -+ "cpuid;" -+ "xchg %%esi, %%ebx;" /* restore ebx & pass to caller */ -+ : "=S" (data[1]), -+#else - "cpuid\n\t" -- : "=a" (data[0]), "=b" (data[1]), "=c" (data[2]), "=d" (data[3]) -+ : "=b" (data[1]), -+#endif -+ "=a" (data[0]), "=c" (data[2]), "=d" (data[3]) - : "0" (function), "2" (index) - : "memory" - ); diff --git a/sys-apps/iotools/files/iotools-1.4-ldflags.patch b/sys-apps/iotools/files/iotools-1.4-ldflags.patch deleted file mode 100644 index 242f6912b69a..000000000000 --- a/sys-apps/iotools/files/iotools-1.4-ldflags.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://code.google.com/p/iotools/issues/detail?id=3 - ---- a/Makefile -+++ b/Makefile -@@ -44,7 +44,7 @@ OBJS=$(OBJS_TO_BUILD) - all: $(BINARY) - - $(BINARY): $(OBJS) iotools.o Makefile -- $(CC) $(CFLAGS) -o $@ iotools.o $(OBJS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ iotools.o $(OBJS) - - RUSER ?= root - RHOST ?= |