In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/57ae61efb92039dfd13bb45ab5540e9b646a8cf5?hp=173ff9fbe44ea216f1dca2eeda47c82cd9ca55e5>

- Log -----------------------------------------------------------------
commit 57ae61efb92039dfd13bb45ab5540e9b646a8cf5
Author: Jarkko Hietaniemi <[email protected]>
Date:   Fri Sep 12 10:45:39 2014 -0400

    expl will not be used if long double is double.
    
    (found in arm-linux)
-----------------------------------------------------------------------

Summary of changes:
 t/porting/libperl.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/porting/libperl.t b/t/porting/libperl.t
index 83ff567..f52beb3 100644
--- a/t/porting/libperl.t
+++ b/t/porting/libperl.t
@@ -429,7 +429,7 @@ my %expected = (
     time   => 'd_time',
     );
 
-if ($Config{uselongdouble} && $Config{d_longdbl}) {
+if ($Config{uselongdouble} && $Config{longdblsize} > $Config{doublesize}) {
     $expected{expl} = undef; # There is no Configure symbol for expl.
 } else {
     $expected{exp} = undef; # There is no Configure symbol for exp.

--
Perl5 Master Repository

Reply via email to