From 035003465ec1e39f5017d9653f960bc3981ade32 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 8 Aug 2021 12:46:27 +0200 Subject: dev-libs/libmemcached: fix musl Closes: https://bugs.gentoo.org/713306 Signed-off-by: David Seifert --- .../files/libmemcached-1.0.18-musl.patch | 65 ++++++++++++++++++++++ .../libmemcached/libmemcached-1.0.18-r4.ebuild | 1 + 2 files changed, 66 insertions(+) create mode 100644 dev-libs/libmemcached/files/libmemcached-1.0.18-musl.patch (limited to 'dev-libs') diff --git a/dev-libs/libmemcached/files/libmemcached-1.0.18-musl.patch b/dev-libs/libmemcached/files/libmemcached-1.0.18-musl.patch new file mode 100644 index 000000000000..06e802de64f6 --- /dev/null +++ b/dev-libs/libmemcached/files/libmemcached-1.0.18-musl.patch @@ -0,0 +1,65 @@ +Taken from alpine, with additional fixes +https://bugs.gentoo.org/713306 + +--- a/libhashkit/fnv_64.cc ++++ b/libhashkit/fnv_64.cc +@@ -37,8 +37,9 @@ + + + #include ++#include + +-#if __WORDSIZE == 64 && defined(HAVE_FNV64_HASH) ++#if (LONG_BIT == 64) && defined(HAVE_FNV64_HASH) + + /* FNV hash'es lifted from Dustin Sallings work */ + static uint64_t FNV_64_INIT= 0xcbf29ce484222325; +--- a/libhashkit/has.cc ++++ b/libhashkit/has.cc +@@ -37,6 +37,7 @@ + + + #include ++#include + + bool libhashkit_has_algorithm(const hashkit_hash_algorithm_t algo) + { +@@ -44,7 +45,7 @@ + { + case HASHKIT_HASH_FNV1_64: + case HASHKIT_HASH_FNV1A_64: +-#if __WORDSIZE == 64 && defined(HAVE_FNV64_HASH) ++#if (LONG_BIT == 64) && defined(HAVE_FNV64_HASH) + return true; + #else + return false; +--- a/libmemcachedutil/pool.cc ++++ b/libmemcachedutil/pool.cc +@@ -42,6 +42,7 @@ + #include + #include + #include ++#include + + struct memcached_pool_st + { +--- a/libtest/cmdline.cc ++++ b/libtest/cmdline.cc +@@ -61,7 +61,7 @@ + #include + #include + +-#ifndef __USE_GNU ++#ifndef _GNU_SOURCE + static char **environ= NULL; + #endif + +@@ -201,7 +201,7 @@ + + fatal_assert(posix_spawnattr_setsigmask(&spawnattr, &mask) == 0); + +-#if defined(POSIX_SPAWN_USEVFORK) || defined(__linux__) ++#if defined(POSIX_SPAWN_USEVFORK) || defined(__GLIBC__) + // Use USEVFORK on linux + flags |= POSIX_SPAWN_USEVFORK; + #endif diff --git a/dev-libs/libmemcached/libmemcached-1.0.18-r4.ebuild b/dev-libs/libmemcached/libmemcached-1.0.18-r4.ebuild index 9033195b21fb..213043a11dc1 100644 --- a/dev-libs/libmemcached/libmemcached-1.0.18-r4.ebuild +++ b/dev-libs/libmemcached/libmemcached-1.0.18-r4.ebuild @@ -29,6 +29,7 @@ PATCHES=( "${FILESDIR}"/${P}-gcc7.patch "${FILESDIR}"/${P}-autotools.patch "${FILESDIR}"/${P}-disable-sphinx.patch + "${FILESDIR}"/${P}-musl.patch ) src_prepare() { -- cgit v1.2.3-65-gdbad