diff options
author | André Draszik <git@andred.net> | 2020-01-10 16:53:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-11 09:17:20 +0000 |
commit | 65d38cc1ce5a106c4c2e5068b8440eb6e5a2b33e (patch) | |
tree | deb188c71e3ebd29234a86ec68d5f1006724d865 /meta/site | |
parent | c8429f707d9ac785f295492470ec8b9ff56c043b (diff) | |
download | openembedded-core-contrib-65d38cc1ce5a106c4c2e5068b8440eb6e5a2b33e.tar.gz |
site: musl and glibc have working mktime()
This coreutils (gnulib) test tests for various bugs that only
exist in ancient versions.
It defaults to assuming buggy behaviour with its own implementation
when cross-compiling.
musl and recent glibc (2.29) are not affected.
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site')
-rw-r--r-- | meta/site/common-glibc | 1 | ||||
-rw-r--r-- | meta/site/common-musl | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meta/site/common-glibc b/meta/site/common-glibc index 4795d7852d9..a0680bc44c5 100644 --- a/meta/site/common-glibc +++ b/meta/site/common-glibc @@ -36,6 +36,7 @@ gl_cv_func_getcwd_path_max=${gl_cv_func_getcwd_path_max=yes} ac_cv_func_getgroups_works=${ac_cv_func_getgroups_works=yes} gl_cv_func_nanosleep=${gl_cv_func_nanosleep='no (mishandles large arguments)'} gl_cv_func_working_mkstemp=${gl_cv_func_working_mkstemp=yes} +gl_cv_func_working_mktime=${gl_cv_func_working_mktime=yes} gl_cv_func_working_utimes=${gl_cv_func_working_utimes=yes} # glib diff --git a/meta/site/common-musl b/meta/site/common-musl index 398eeacb994..4be8d002d65 100644 --- a/meta/site/common-musl +++ b/meta/site/common-musl @@ -45,6 +45,7 @@ gl_cv_func_strtod_works=${gl_cv_func_strtod_works=yes} gl_cv_func_tzset_clobber=${gl_cv_func_tzset_clobber=no} gl_cv_func_gettimeofday_posix_signature=${gl_cv_func_gettimeofday_posix_signature=yes} gl_cv_func_working_mkstemp=${gl_cv_func_working_mkstemp=yes} +gl_cv_func_working_mktime=${gl_cv_func_working_mktime=yes} gl_cv_func_working_utimes=${gl_cv_func_working_utimes=yes} ac_cv_func_posix_spawn=${ac_cv_func_posix_spawn=yes} ac_cv_func_posix_spawn_works=${ac_cv_func_posix_spawn_works=yes} |