In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/9daab0869a233e99f43a1a92302e5d3745b04b6f?hp=89f800230bb27e9ff9996851c0d37fc107eaef41>

- Log -----------------------------------------------------------------
commit 9daab0869a233e99f43a1a92302e5d3745b04b6f
Author: H.Merijn Brand <h.m.br...@xs4all.nl>
Date:   Sun Apr 28 13:22:52 2019 +0200

    Devel::PPPort order misc before uv because of UNLIKELY
    
    uv uses UNLIKELY before it gets undefined in misc, which will be the
    case fro perl-5.8.8 and below

-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl         | 2 +-
 dist/Devel-PPPort/Changes      | 4 ++++
 dist/Devel-PPPort/PPPort_pm.PL | 6 +++---
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 16c237daa5..2549aa76a7 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -339,7 +339,7 @@ use File::Glob qw(:case);
     },
 
     'Devel::PPPort' => {
-        'DISTRIBUTION' => 'ETHER/Devel-PPPort-3.47.tar.gz',
+        'DISTRIBUTION' => 'ETHER/Devel-PPPort-3.48.tar.gz',
         'FILES'        => q[dist/Devel-PPPort],
         'EXCLUDED'     => [
             'PPPort.pm',    # we use PPPort_pm.PL instead
diff --git a/dist/Devel-PPPort/Changes b/dist/Devel-PPPort/Changes
index c064c8debc..ded335c0ea 100644
--- a/dist/Devel-PPPort/Changes
+++ b/dist/Devel-PPPort/Changes
@@ -1,5 +1,9 @@
 Revision history for Devel-PPPort
 
+ 3.48 - 2019-04-28
+
+    * Order misc before uv for UNLIKELY (<=5.8.8)
+
  3.47 - 2019-04-27
 
     * re-fix leaky code (used only in tests)
diff --git a/dist/Devel-PPPort/PPPort_pm.PL b/dist/Devel-PPPort/PPPort_pm.PL
index b866b19b40..66959e7b21 100644
--- a/dist/Devel-PPPort/PPPort_pm.PL
+++ b/dist/Devel-PPPort/PPPort_pm.PL
@@ -551,7 +551,7 @@ package Devel::PPPort;
 use strict;
 use vars qw($VERSION $data);
 
-$VERSION = '3.46';
+$VERSION = '3.48';
 
 sub _init_data
 {
@@ -628,14 +628,14 @@ __DATA__
 
 %include limits
 
+%include misc
+
 %include uv
 
 %include memory
 
 %include magic_defs
 
-%include misc
-
 %include mess
 
 %include variables

-- 
Perl5 Master Repository

Reply via email to