search for: f23e3863

Displaying 1 result from an estimated 1 matches for "f23e3863".

2020 Mar 28
0
[klibc:update-dash] dash: system: Disable glibc warning on sigsetmask
...o2 at ao2.it> Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au> Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- usr/dash/system.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/usr/dash/system.h b/usr/dash/system.h index c8424f75..f23e3863 100644 --- a/usr/dash/system.h +++ b/usr/dash/system.h @@ -36,8 +36,17 @@ static inline void sigclearmask(void) { -#ifdef HAVE_SIGSETMASK +#if defined(HAVE_SIGSETMASK) && \ + (!defined(__GLIBC__) || \ + (defined(__GNUC__) && (__GNUC__ * 1000 + __GNUC_MINOR__) >= 4006))...