safec: Upgrade to 3.5 release

Add a patch to fix build on musl

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2019-09-11 13:49:43 -07:00
parent 45e75e15e9
commit 2c97f18706
2 changed files with 34 additions and 2 deletions

View File

@ -0,0 +1,30 @@
From 57456b5d034c8965b11eceed1bf861c98a18c324 Mon Sep 17 00:00:00 2001
From: "jenkins@kwaj" <jenkins@kwaj>
Date: Wed, 11 Sep 2019 13:43:45 -0700
Subject: [PATCH] memrchr: Use _ISOC11_SOURCE only with glibc
this is a glibc feature test macro which is not available
on other libraries e.g. musl
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/extmem/memrchr_s.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/extmem/memrchr_s.c b/src/extmem/memrchr_s.c
index 8d10a7b9..e73d3579 100644
--- a/src/extmem/memrchr_s.c
+++ b/src/extmem/memrchr_s.c
@@ -36,7 +36,7 @@
#endif
#ifdef HAVE_MEMRCHR
-#ifndef _ISOC11_SOURCE
+#if defined (__GLIBC__) && !defined(_ISOC11_SOURCE)
extern void *memrchr(const void *, int, size_t);
#endif
#endif
--
2.17.1

View File

@ -7,8 +7,10 @@ SECTION = "lib"
inherit autotools pkgconfig
S = "${WORKDIR}/git"
SRCREV = "62e6b2df55084316d027165d286e46beb40513dc"
SRC_URI = "git://github.com/rurban/safeclib.git"
SRCREV = "a99a052a56da409638c9fe7e096a5ae6661ca7cb"
SRC_URI = "git://github.com/rurban/safeclib.git \
file://0001-memrchr-Use-_ISOC11_SOURCE-only-with-glibc.patch \
"
CPPFLAGS_append_libc-musl = " -D_GNU_SOURCE"