diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2019-01-15 07:33:52 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-01-19 04:21:45 +0100 |
commit | 94497c9737e91347b528b31d5c4a60e649b8a45e (patch) | |
tree | 540f2fd4a4160c67fef52eed78424b99d5ae9ecd /dev-libs/ivykis | |
parent | net-proxy/mitmproxy: bump to 4.0.4 (diff) | |
download | gentoo-94497c9737e91347b528b31d5c4a60e649b8a45e.tar.gz gentoo-94497c9737e91347b528b31d5c4a60e649b8a45e.tar.bz2 gentoo-94497c9737e91347b528b31d5c4a60e649b8a45e.zip |
dev-libs/ivykis: fix building with glibc-2.28
Closes: https://bugs.gentoo.org/675338
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10836
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-libs/ivykis')
-rw-r--r-- | dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch | 29 | ||||
-rw-r--r-- | dev-libs/ivykis/ivykis-0.42.3-r1.ebuild | 12 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch b/dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch new file mode 100644 index 000000000000..5d7352669f21 --- /dev/null +++ b/dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch @@ -0,0 +1,29 @@ +# https://github.com/buytenh/ivykis/issues/15 +# https://github.com/buytenh/ivykis/pull/16 + +diff --git a/configure.ac b/configure.ac +index e9b10c0..56440d1 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -88,6 +88,8 @@ esac + # link in libpthread_nonshared.a if it is available. + # + AC_CHECK_LIB([pthread_nonshared], [pthread_atfork]) ++# the lib is gone in glibc 2.28, things are now in c_nonshared ++AC_CHECK_LIB([c_nonshared], [pthread_atfork]) + + # Checks for header files. + AC_CHECK_HEADERS([process.h]) +diff --git a/src/pthr.h b/src/pthr.h +index a41eaf3..32c1af2 100644 +--- a/src/pthr.h ++++ b/src/pthr.h +@@ -42,7 +42,7 @@ static inline int pthreads_available(void) + * symbol because that causes it to be undefined even if you link + * libpthread_nonshared.a in explicitly. + */ +-#ifndef HAVE_LIBPTHREAD_NONSHARED ++#if !defined(HAVE_LIBPTHREAD_NONSHARED) && !defined(HAVE_LIBC_NONSHARED) + #pragma weak pthread_atfork + #endif + diff --git a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild index bb7cc9b108ce..7682426f6e84 100644 --- a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild +++ b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit autotools + DESCRIPTION="Library for asynchronous I/O readiness notification" HOMEPAGE="https://github.com/buytenh/ivykis" SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -12,6 +14,16 @@ SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86" IUSE="static-libs" +PATCHES=( + "${FILESDIR}/${PN}-fix-segfault-glibc-2.28.patch" # Bug 675338 +) + +src_prepare() { + default + + eautoreconf +} + src_configure() { econf $(use_enable static-libs static) } |