In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/1bb0c253189bee57fc50a82b1420a60f2e677043?hp=bb9bfaa4cc8652ab8df46818fbf2f712debcc468>

- Log -----------------------------------------------------------------
commit 1bb0c253189bee57fc50a82b1420a60f2e677043
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Tue Dec 23 14:03:54 2014 +0000

    Update DB_File to CPAN version 1.835
    
      [DELTA]
    
    1.835 23 Dec 2014
    
       * Silence more compiler warnings
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl   | 2 +-
 cpan/DB_File/DB_File.pm  | 2 +-
 cpan/DB_File/DB_File.xs  | 2 +-
 cpan/DB_File/Makefile.PL | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index e4b66cc..3f84c17 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -328,7 +328,7 @@ use File::Glob qw(:case);
     },
 
     'DB_File' => {
-        'DISTRIBUTION' => 'PMQS/DB_File-1.834.tar.gz',
+        'DISTRIBUTION' => 'PMQS/DB_File-1.835.tar.gz',
         'FILES'        => q[cpan/DB_File],
         'EXCLUDED'     => [
             qr{^patches/},
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 900e6da..9b1f957 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -163,7 +163,7 @@ our ($db_version, $use_XSLoader, 
$splice_end_array_no_length, $splice_end_array,
 use Carp;
 
 
-$VERSION = "1.834" ;
+$VERSION = "1.835" ;
 $VERSION = eval $VERSION; # needed for dev releases
 
 {
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index 0b20a1c..151ec31 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -314,7 +314,7 @@ typedef db_recno_t  recno_t;
 #if DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR < 5
 #    define flagSet(flags, bitmask)    ((flags) & (bitmask))
 #else
-#    define flagSet(flags, bitmask)    (((flags) & DB_OPFLAGS_MASK) == 
(bitmask))
+#    define flagSet(flags, bitmask)    (((flags) & DB_OPFLAGS_MASK) == 
(u_int)(bitmask))
 #endif
 
 #else /* db version 1.x */
diff --git a/cpan/DB_File/Makefile.PL b/cpan/DB_File/Makefile.PL
index 372b9f0..f5ef7c8 100644
--- a/cpan/DB_File/Makefile.PL
+++ b/cpan/DB_File/Makefile.PL
@@ -4,7 +4,7 @@ use strict ;
 use ExtUtils::MakeMaker 5.16 ;
 use Config ;
 
-die "DB_File needs Perl 5.008_03 or better. This is $]\n" 
+die "DB_File needs Perl 5.8.3 or better. This is $]\n" 
     if $] < 5.008003; 
 
 my $VER_INFO ;

--
Perl5 Master Repository

Reply via email to