| timbo@cvs.perl.org 2005-06-03, 8:27 pm |
| Author: timbo
Date: Fri Oct 22 02:09:14 2004
New Revision: 515
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/Makefile.PL
Log:
A release, at last!
Modified: dbd-oracle/trunk/Changes
====================
====================
====================
==================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Fri Oct 22 02:09:14 2004
@@ -1,4 +1,4 @@
-=head1 Changes in DBD-Oracle 1.16 (svn rev 509) 21st October 2004
+=head1 Changes in DBD-Oracle 1.16 (svn rev 515) 22nd October 2004
NOTE:
This release has major changes to Unicode support. See below.
@@ -47,6 +47,7 @@
Corrected typo in ora_lob_read() example thanks to Johannes Wierny.
Corrected LOB example thanks to Sascha Pfalz and Thomas Upton.
Updated README.macosx thanks to Hilmar Lapp.
+ Updated README.hpux thanks to Gram Ludlow and Lincoln Baxter.
Added $dbh-> reauthenticate($user
,$pass) docs thanks to Andy Hassall.
Added $dbh->& #123;ora_parse_error
_offset} docs thanks to Andy Hassall.
Added gcc example to README.aix thanks to Adrian Terranova.
Modified: dbd-oracle/trunk/Makefile.PL
====================
====================
====================
==================
--- dbd-oracle/trunk/Makefile.PL (original)
+++ dbd-oracle/trunk/Makefile.PL Fri Oct 22 02:09:14 2004
@@ -4,7 +4,10 @@
# vim: ts=8:sw=4
BEGIN { $^W = 1 }
-BEGIN { require 5.004 }
+
+# perl5.5 could be supported with some work.
+# If you need it, then do the work yourself and send me a diff. Thanks.
+BEGIN { require 5.006 }
use ExtUtils::MakeMaker 5.16, qw(&WriteMakefile $Verbose);
use Getopt::Long;
|