diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-12-31 13:38:19 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-12-31 13:38:19 +0000 |
commit | 83bad0ad7e2f38025749cfe6f469619e4f62bf63 (patch) | |
tree | eeeae5bca509bf1e76421c2a5fee7c4e0366aa5e /wrappers | |
parent | wrappers/emerge-wrapper: add ELIBC=Cygwin autodetection (diff) | |
download | crossdev-83bad0ad7e2f38025749cfe6f469619e4f62bf63.tar.gz crossdev-83bad0ad7e2f38025749cfe6f469619e4f62bf63.tar.bz2 crossdev-83bad0ad7e2f38025749cfe6f469619e4f62bf63.zip |
sire/linux: remove gl_cv_func_re_compile_pattern_working=yes from musl
re_compile_pattern is present in glibc, uclibc, uclibc-ng, but not musl
Reported-by: Felix Janda
Bug: https://bugs.gentoo.org/553988
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'wrappers')
-rw-r--r-- | wrappers/site/linux | 1 | ||||
-rw-r--r-- | wrappers/site/linux-gnu | 5 | ||||
-rw-r--r-- | wrappers/site/linux-uclibc | 5 |
3 files changed, 10 insertions, 1 deletions
diff --git a/wrappers/site/linux b/wrappers/site/linux index 4ee2c1e..5631520 100644 --- a/wrappers/site/linux +++ b/wrappers/site/linux @@ -24,7 +24,6 @@ ac_cv_func_mmap_fixed_mapped=yes # coreutils. https://bugs.gentoo.org/show_bug.cgi?id=177061 fu_cv_sys_stat_statvfs=yes -gl_cv_func_re_compile_pattern_working=yes gl_cv_func_rename_trailing_dest_slash_bug=no gl_cv_func_rename_trailing_slash_bug=no diff --git a/wrappers/site/linux-gnu b/wrappers/site/linux-gnu index f4273b8..25cf641 100644 --- a/wrappers/site/linux-gnu +++ b/wrappers/site/linux-gnu @@ -5,6 +5,11 @@ ac_cv_func_realloc_0_nonnull=yes # sys-devel/gettext-0.17 gl_cv_func_wcwidth_works=yes +# coreutils +# https://bugs.gentoo.org/177061 +# https://bugs.gentoo.org/553988 +gl_cv_func_re_compile_pattern_working=yes + # sys-apps/dbus-1.3.0 ac_cv_have_abstract_sockets=yes diff --git a/wrappers/site/linux-uclibc b/wrappers/site/linux-uclibc index 90f1f4a..640f40d 100644 --- a/wrappers/site/linux-uclibc +++ b/wrappers/site/linux-uclibc @@ -67,3 +67,8 @@ ac_cv_ulong=yes ac_cv_ushort=yes ac_cv_va_copy=C99 ac_cv_va_val_copy=yes + +# coreutils +# https://bugs.gentoo.org/177061 +# https://bugs.gentoo.org/553988 +gl_cv_func_re_compile_pattern_working=yes |