summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-01-06 15:11:15 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-06 15:11:15 +0000
commitd63909e497678c98f7f710462c7feadb15b4cea5 (patch)
tree7ed362119670a86bd088db2d489ca9a5d0a392ef /ext
parentb326da91b4676e27e5730b09997d383adc2468b4 (diff)
downloadperl-d63909e497678c98f7f710462c7feadb15b4cea5.tar.gz
DB_File sync from Paul Marquess.
p4raw-id: //depot/perl@14105
Diffstat (limited to 'ext')
-rw-r--r--ext/DB_File/Changes7
-rw-r--r--ext/DB_File/DB_File.pm10
-rw-r--r--ext/DB_File/DB_File.xs7
-rw-r--r--ext/DB_File/dbinfo2
-rwxr-xr-xext/DB_File/t/db-recno.t4
-rw-r--r--ext/DB_File/version.c6
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.