In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ea2450303dab0ce511c025e2afc6018863142beb?hp=547bae375a4ab346bc37dfbc4c76b43073c371ed>

- Log -----------------------------------------------------------------
commit ea2450303dab0ce511c025e2afc6018863142beb
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Tue Dec 9 23:27:38 2014 +0000

    Update DB_File to CPAN version 1.833
    
      [DELTA]
    
    1.833 9 Dec 2014
    
       * More Silence compiler warnings
    
       * 1.832 breaks bleadperl C89 build
         RT #100812
-----------------------------------------------------------------------

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

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 022f52e..3865a51 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.832.tar.gz',
+        'DISTRIBUTION' => 'PMQS/DB_File-1.833.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 73fd4e0..8ab6a6a 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -2,14 +2,14 @@
 #
 # Written by Paul Marquess ([email protected])
 #
-#     Copyright (c) 1995-2013 Paul Marquess. All rights reserved.
+#     Copyright (c) 1995-2014 Paul Marquess. All rights reserved.
 #     This program is free software; you can redistribute it and/or
 #     modify it under the same terms as Perl itself.
 
 
 package DB_File::HASHINFO ;
 
-require 5.00504;
+require 5.00803;
 
 use warnings;
 use strict;
@@ -163,7 +163,7 @@ our ($db_version, $use_XSLoader, 
$splice_end_array_no_length, $splice_end_array,
 use Carp;
 
 
-$VERSION = "1.832" ;
+$VERSION = "1.833" ;
 $VERSION = eval $VERSION; # needed for dev releases
 
 {
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index 514b1bd..d060dcb 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -125,6 +125,8 @@
 #  include "ppport.h"
 #endif
 
+int DB_File___unused() { return 0; }
+
 /* Mention DB_VERSION_MAJOR_CFG, DB_VERSION_MINOR_CFG, and
    DB_VERSION_PATCH_CFG here so that Configure pulls them all in. */
 
@@ -171,7 +173,7 @@
 #    ifdef __cplusplus
 #        define dNOOP (void)0
 #    else
-#        define dNOOP extern int DB_File___notused
+#        define dNOOP extern int DB_File___notused()
 #    endif
 
     /* Ditto for dXSARGS. */
diff --git a/cpan/DB_File/Makefile.PL b/cpan/DB_File/Makefile.PL
index d33e74f..70857be 100644
--- a/cpan/DB_File/Makefile.PL
+++ b/cpan/DB_File/Makefile.PL
@@ -4,8 +4,8 @@ use strict ;
 use ExtUtils::MakeMaker 5.16 ;
 use Config ;
 
-die "DB_File needs Perl 5.005_04 or better. This is $]\n" 
-    if $] < 5.00504; 
+die "DB_File needs Perl 5.008_03 or better. This is $]\n" 
+    if $] < 5.00803; 
 
 my $VER_INFO ;
 my $LIB_DIR ;

--
Perl5 Master Repository

Reply via email to