summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPaul Marquess <paul.marquess@btinternet.com>2001-11-27 15:06:45 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-27 14:06:45 +0000
commit412e9c57bba27dca18d003a2be60e2d55b6d4866 (patch)
tree3464cfc45f2e4779da1c6b410cfed468306d0dfb /ext
parent1bb908c3a4ad348fff25b9046b4be74565cde673 (diff)
downloadperl-412e9c57bba27dca18d003a2be60e2d55b6d4866.tar.gz
DB_File 1.801
Message-ID: <AIEAJICLCBDNAAOLLOKLEEEIDGAA.paul_marquess@yahoo.co.uk> p4raw-id: //depot/perl@13315
Diffstat (limited to 'ext')
-rw-r--r--ext/DB_File/Changes7
-rw-r--r--ext/DB_File/DB_File.pm6
-rw-r--r--ext/DB_File/DB_File.xs5
-rw-r--r--ext/DB_File/Makefile.PL3
4 files changed, 15 insertions, 6 deletions
diff --git a/ext/DB_File/Changes b/ext/DB_File/Changes
index e3b0a5d762..b0068feac6 100644
--- a/ext/DB_File/Changes
+++ b/ext/DB_File/Changes
@@ -388,3 +388,10 @@
* upgrade Makefile.PL upgrade/downgrade code to toggle "our" with
"use vars"
+
+1.801 26th November 2001
+
+ * Fixed typo in Makefile.PL
+
+ * Added "clean" attribute to Makefile.PL
+
diff --git a/ext/DB_File/DB_File.pm b/ext/DB_File/DB_File.pm
index b00b500884..b83877f0ce 100644
--- a/ext/DB_File/DB_File.pm
+++ b/ext/DB_File/DB_File.pm
@@ -1,8 +1,8 @@
# DB_File.pm -- Perl 5 interface to Berkeley DB
#
# written by Paul Marquess (Paul.Marquess@btinternet.com)
-# last modified 23rd Nov 2001
-# version 1.800
+# last modified 26th Nov 2001
+# version 1.801
#
# Copyright (c) 1995-2001 Paul Marquess. All rights reserved.
# This program is free software; you can redistribute it and/or
@@ -150,7 +150,7 @@ our ($db_version, $use_XSLoader);
use Carp;
-$VERSION = "1.800" ;
+$VERSION = "1.801" ;
#typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE;
$DB_BTREE = new DB_File::BTREEINFO ;
diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs
index 5894f7ed30..c788b987fb 100644
--- a/ext/DB_File/DB_File.xs
+++ b/ext/DB_File/DB_File.xs
@@ -3,8 +3,8 @@
DB_File.xs -- Perl 5 interface to Berkeley DB
written by Paul Marquess <Paul.Marquess@btinternet.com>
- last modified 23rd Nov 2001
- version 1.800
+ last modified 26th Nov 2001
+ version 1.801
All comments/suggestions/problems are welcome
@@ -97,6 +97,7 @@
Added lots of casts
1.800 - Moved backward compatability code into ppport.h.
Use the new constants code.
+ 1.801 - No change to DB_File.xs
*/
diff --git a/ext/DB_File/Makefile.PL b/ext/DB_File/Makefile.PL
index b1580e9c5c..b19215bc68 100644
--- a/ext/DB_File/Makefile.PL
+++ b/ext/DB_File/Makefile.PL
@@ -22,7 +22,8 @@ WriteMakefile(
XSPROTOARG => '-noprototypes',
DEFINE => $OS2 || "",
INC => ($^O eq "MacOS" ? "-i ::::db:include" : ""),
- 'depend' => {"version$(OBJ_EXT)" => 'version.c'},
+ 'depend' => {'version$(OBJ_EXT)' => 'version.c'},
+ 'clean' => {FILES => 'constants.h constants.xs'},
);
my @names = qw(