diff options
author | 2019-11-29 19:09:14 +0100 | |
---|---|---|
committer | 2019-11-29 19:13:55 +0100 | |
commit | f52f19cef8381e89c75d0318113b86d0ff23d34a (patch) | |
tree | 37f91f060b3c26adfcc29915e9771946056b0595 /sys-libs/libsmbios/files | |
parent | dev-go/go-crypto: Remove old version 0_pre20160126 (diff) | |
download | gentoo-f52f19cef8381e89c75d0318113b86d0ff23d34a.tar.gz gentoo-f52f19cef8381e89c75d0318113b86d0ff23d34a.tar.bz2 gentoo-f52f19cef8381e89c75d0318113b86d0ff23d34a.zip |
sys-libs/libsmbios: Removed old
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-libs/libsmbios/files')
3 files changed, 0 insertions, 64 deletions
diff --git a/sys-libs/libsmbios/files/libsmbios-2.3.0-doxygen_target.patch b/sys-libs/libsmbios/files/libsmbios-2.3.0-doxygen_target.patch deleted file mode 100644 index ebe6798bd731..000000000000 --- a/sys-libs/libsmbios/files/libsmbios-2.3.0-doxygen_target.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- libsmbios-2.3.0/Makefile.am -+++ libsmbios-2.3.0/Makefile.am -@@ -89,10 +89,12 @@ - - - ########## DOCS ################ --all: doxygen - if HAVE_DOXYGEN -+all: doxygen - DOXYGEN_DEPS=out/libsmbios_c/html/index.html out/libsmbios_c++/html/index.html - doxygen: $(DOXYGEN_DEPS) -+else -+all: - endif - - DOT=@DOT@ diff --git a/sys-libs/libsmbios/files/libsmbios-2.3.3-doxygen_target.patch b/sys-libs/libsmbios/files/libsmbios-2.3.3-doxygen_target.patch deleted file mode 100644 index 4adca14f21d8..000000000000 --- a/sys-libs/libsmbios/files/libsmbios-2.3.3-doxygen_target.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- libsmbios-2.3.3/Makefile.am -+++ libsmbios-2.3.3/Makefile.am -@@ -89,13 +89,15 @@ - - - ########## DOCS ################ --all: doxygen - if HAVE_DOXYGEN -+all: doxygen - DOXYGEN_DEPS=out/libsmbios_c/html/index.html - if BUILD_LIBSMBIOS_CXX - DOXYGEN_DEPS+=out/libsmbios_c++/html/index.html - endif - doxygen: $(DOXYGEN_DEPS) -+else -+all: - endif - - DOT=@DOT@ diff --git a/sys-libs/libsmbios/files/libsmbios-fix-pie.patch b/sys-libs/libsmbios/files/libsmbios-fix-pie.patch deleted file mode 100644 index 3ab404e8ea2e..000000000000 --- a/sys-libs/libsmbios/files/libsmbios-fix-pie.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- libsmbios-2.2.19/src/bin/dellMediaDirectCtl.cpp -+++ libsmbios-2.2.19/src/bin/dellMediaDirectCtl.cpp -@@ -183,16 +183,21 @@ - { - iopl(3); - -+ u32 tmpebx; - __asm__ __volatile__ ( -- // magic port -- "outb %%al, %%dx \n\t" -- -+ "movl %%ebx,%[tmpebx]\n\t" -+ "movl %[ebx],%%ebx\n\t" -+ // magic port -+ "outb %%al, %%dx \n\t" -+ "movl %%ebx,%[ebx]\n\t" -+ "movl %[tmpebx],%%ebx\n\t" - : /* output args */ - "=a" (r->eax), -- "=b" (r->ebx), -+ [ebx] "=rm" (r->ebx), - "=c" (r->ecx), - "=S" (r->esi), -- "=D" (r->edi) -+ "=D" (r->edi), -+ [tmpebx] "+m" (tmpebx) - : /* input args */ - "0" (r->eax), - "1" (r->ebx), |