diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-03-21 13:37:35 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-03-22 16:04:06 +0200 |
commit | 8067aeac59023173ff4888b814383a11ae0f72a5 (patch) | |
tree | ea719030deda5bc84953b2aafd75c37aa73c1b2b /dev-libs/ivykis | |
parent | app-admin/conserver: remove unused patch (diff) | |
download | gentoo-8067aeac59023173ff4888b814383a11ae0f72a5.tar.gz gentoo-8067aeac59023173ff4888b814383a11ae0f72a5.tar.bz2 gentoo-8067aeac59023173ff4888b814383a11ae0f72a5.zip |
dev-libs/ivykis: remove unused patch(es)
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/20032
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/ivykis')
-rw-r--r-- | dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch | 29 |
1 files changed, 0 insertions, 29 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 deleted file mode 100644 index 5d7352669f21..000000000000 --- a/dev-libs/ivykis/files/ivykis-fix-segfault-glibc-2.28.patch +++ /dev/null @@ -1,29 +0,0 @@ -# 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 - |