dev-libs/dietlibc: Fix compilation (#644116 by Mike Hiretsky)
authorPacho Ramos <pacho@gentoo.org>
Mon, 28 May 2018 17:39:40 +0000 (19:39 +0200)
committerPacho Ramos <pacho@gentoo.org>
Mon, 28 May 2018 17:55:22 +0000 (19:55 +0200)
Package-Manager: Portage-2.3.38, Repoman-2.3.9

dev-libs/dietlibc/dietlibc-0.34_pre20140729-r1.ebuild
dev-libs/dietlibc/files/dietlibc-0.34_pre20140729-dyn-lib.patch [new file with mode: 0644]

index ab312bfd87344e37f933a6abb0c482bc42fa1cfd..ac5939a008db2cbf6e75143743a6270ef6111224 100644 (file)
@@ -1,8 +1,8 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils flag-o-matic toolchain-funcs
+EAPI=6
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="A libc optimized for small size"
 HOMEPAGE="http://www.fefe.de/dietlibc/"
@@ -16,11 +16,16 @@ IUSE=""
 DEPEND=""
 RDEPEND=""
 
-DIETHOME=/usr/diet
+DIETHOME="/usr/diet"
 
-S=${WORKDIR}/dietlibc
+S="${WORKDIR}/dietlibc"
 
 src_prepare() {
+       default
+
+       # use __DYN_LIB instead of __PIC__ in i386 socketcalls, bug #644116
+       eapply "${FILESDIR}"/${P}-dyn-lib.patch
+
        # Replace sparc64 related C[XX]FLAGS (see bug #45716)
        use sparc && replace-sparc64-flags
 
diff --git a/dev-libs/dietlibc/files/dietlibc-0.34_pre20140729-dyn-lib.patch b/dev-libs/dietlibc/files/dietlibc-0.34_pre20140729-dyn-lib.patch
new file mode 100644 (file)
index 0000000..fe3fcb0
--- /dev/null
@@ -0,0 +1,22 @@
+From 843c667c1b516c0764840c6e4d41188f9c96a415 Mon Sep 17 00:00:00 2001
+From: leitner <leitner>
+Date: Mon, 4 Sep 2017 21:59:50 +0000
+Subject: [PATCH] use __DYN_LIB instead of __PIC__ in i386 socketcalls
+
+---
+ i386/syscalls.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/i386/syscalls.h b/i386/syscalls.h
+index 11d6f1d5..14ac517b 100644
+--- a/i386/syscalls.h
++++ b/i386/syscalls.h
+@@ -416,7 +416,7 @@ sym: \
+ .Lend##sym: ; \
+ .size sym,.Lend##sym-sym
+-#ifndef __PIC__
++#ifndef __DYN_LIB
+ #define __socketcall(name,NAME) \
+ .text; \
+ .type name,@function; \