[oe-commits] [openembedded-core] 02/24: perl: Undefine d_libm_lib_version.

git at git.openembedded.org git at git.openembedded.org
Mon Jan 29 23:09:26 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit f01af4159fe8f75cb1d6a5cbce9cb73e1c8cc19f
Author: Daniel Díaz <daniel.diaz at linaro.org>
AuthorDate: Tue Oct 10 15:14:54 2017 -0500

    perl: Undefine d_libm_lib_version.
    
    A recent commit in GLIBC [1] got rid of _LIB_VERSION, which
    makes Perl's build fail:
    | pp.c:47:5: error: unknown type name '_LIB_VERSION_TYPE'; did you mean '__VERSION__'?
    |      _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
    |      ^~~~~~~~~~~~~~~~~
    |      __VERSION__
    | pp.c:47:38: error: '_IEEE_' undeclared here (not in a function); did you mean '_SIZET_'?
    |      _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
    |                                       ^~~~~~
    |                                       _SIZET_
    | make[1]: *** [pp.o] Error 1
    
    The current config.sh enables d_libm_lib_version for
    everyone, with special cases left to undefine it as fixup
    (such as MUSL [2]).
    
    Since this may only affect some BSDs and Cygwin [3], it
    follows that the opposite (defining it) should be a fixup
    for those special cases.
    
    [1] https://sourceware.org/git/?p=glibc.git;a=commit;h=813378e9fe17e029caf627cab76fe23eb46815fa
    [2] http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-devtools/perl/perl_5.24.1.bb?id=8ca61a5464743ff85b6d26886112750d6ddd13e0#n127
    [3] https://perl5.git.perl.org/perl.git/blob/443bd156a6baaf7a8fe6b6b05fcf6c4178140ed2:/pp.c#l42
    
    Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta/recipes-devtools/perl/perl/config.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/perl/perl/config.sh b/meta/recipes-devtools/perl/perl/config.sh
index 4657673..ac0484c 100644
--- a/meta/recipes-devtools/perl/perl/config.sh
+++ b/meta/recipes-devtools/perl/perl/config.sh
@@ -361,7 +361,7 @@ d_ldbl_dig='define'
 d_ldexpl='define'
 d_lgamma='define'
 d_lgamma_r='define'
-d_libm_lib_version='define'
+d_libm_lib_version='undef'
 d_libname_unique='undef'
 d_link='define'
 d_llrint='define'

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list