diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-06 15:11:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-06 15:11:15 +0000 |
commit | d63909e497678c98f7f710462c7feadb15b4cea5 (patch) | |
tree | 7ed362119670a86bd088db2d489ca9a5d0a392ef /ext/DB_File | |
parent | b326da91b4676e27e5730b09997d383adc2468b4 (diff) | |
download | perl-d63909e497678c98f7f710462c7feadb15b4cea5.tar.gz |
DB_File sync from Paul Marquess.
p4raw-id: //depot/perl@14105
Diffstat (limited to 'ext/DB_File')
-rw-r--r-- | ext/DB_File/Changes | 7 | ||||
-rw-r--r-- | ext/DB_File/DB_File.pm | 10 | ||||
-rw-r--r-- | ext/DB_File/DB_File.xs | 7 | ||||
-rw-r--r-- | ext/DB_File/dbinfo | 2 | ||||
-rwxr-xr-x | ext/DB_File/t/db-recno.t | 4 | ||||
-rw-r--r-- | ext/DB_File/version.c | 6 |
6 files changed, 22 insertions, 14 deletions
diff --git a/ext/DB_File/Changes b/ext/DB_File/Changes index b0068feac6..6676d8ae2a 100644 --- a/ext/DB_File/Changes +++ b/ext/DB_File/Changes @@ -395,3 +395,10 @@ * Added "clean" attribute to Makefile.PL +1.802 6th January 2001 + + * The message about some test failing in db-recno.t had the wrong test + numbers. Fixed. + + * merged core patch 13942. + diff --git a/ext/DB_File/DB_File.pm b/ext/DB_File/DB_File.pm index b83877f0ce..3d3efbbd39 100644 --- a/ext/DB_File/DB_File.pm +++ b/ext/DB_File/DB_File.pm @@ -1,10 +1,10 @@ # DB_File.pm -- Perl 5 interface to Berkeley DB # # written by Paul Marquess (Paul.Marquess@btinternet.com) -# last modified 26th Nov 2001 -# version 1.801 +# last modified 6th Jan 2002 +# version 1.802 # -# Copyright (c) 1995-2001 Paul Marquess. All rights reserved. +# Copyright (c) 1995-2002 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. @@ -150,7 +150,7 @@ our ($db_version, $use_XSLoader); use Carp; -$VERSION = "1.801" ; +$VERSION = "1.802" ; #typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE; $DB_BTREE = new DB_File::BTREEINFO ; @@ -2225,7 +2225,7 @@ compile properly on IRIX 5.3. =head1 COPYRIGHT -Copyright (c) 1995-2001 Paul Marquess. All rights reserved. This program +Copyright (c) 1995-2002 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. diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index c788b987fb..26e2160f32 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -3,12 +3,12 @@ DB_File.xs -- Perl 5 interface to Berkeley DB written by Paul Marquess <Paul.Marquess@btinternet.com> - last modified 26th Nov 2001 - version 1.801 + last modified 6th Jan 2002 + version 1.802 All comments/suggestions/problems are welcome - Copyright (c) 1995-2001 Paul Marquess. All rights reserved. + Copyright (c) 1995-2002 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. @@ -98,6 +98,7 @@ 1.800 - Moved backward compatability code into ppport.h. Use the new constants code. 1.801 - No change to DB_File.xs + 1.802 - No change to DB_File.xs */ diff --git a/ext/DB_File/dbinfo b/ext/DB_File/dbinfo index 5a4df15907..d349d07eef 100644 --- a/ext/DB_File/dbinfo +++ b/ext/DB_File/dbinfo @@ -7,7 +7,7 @@ # Version: 1.03 # Date 17th September 2000 # -# Copyright (c) 1998-2000 Paul Marquess. All rights reserved. +# Copyright (c) 1998-2002 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. diff --git a/ext/DB_File/t/db-recno.t b/ext/DB_File/t/db-recno.t index 339baec22c..5b03219c55 100755 --- a/ext/DB_File/t/db-recno.t +++ b/ext/DB_File/t/db-recno.t @@ -93,8 +93,8 @@ sub bad_one { print STDERR <<EOM unless $bad_ones++ ; # -# Some older versions of Berkeley DB version 1 will fail tests 51, -# 53 and 55. +# Some older versions of Berkeley DB version 1 will fail tests 61, +# 63 and 65. # # You can safely ignore the errors if you're never going to use the # broken functionality (recno databases with a modified bval). diff --git a/ext/DB_File/version.c b/ext/DB_File/version.c index 0997db1010..03b17c18e6 100644 --- a/ext/DB_File/version.c +++ b/ext/DB_File/version.c @@ -3,12 +3,12 @@ version.c -- Perl 5 interface to Berkeley DB written by Paul Marquess <Paul.Marquess@btinternet.com> - last modified 22nd Oct 2001 - version 1.79 + last modified 2nd Jan 2002 + version 1.802 All comments/suggestions/problems are welcome - Copyright (c) 1995-2001 Paul Marquess. All rights reserved. + Copyright (c) 1995-2002 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. |