Subject: | Please change minimum perl version back to 5.8 |
There is nothing in this codebase that warrants perl 5.10. In fact all
it needs is the attached patch, with 0 code changes. Tested on multiple
5.8 perls all the way back to 5.8.1 itself.
Cheers
diff --git a/Makefile.PL b/Makefile.PL
index 69cc5ec..e9a0abc 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,5 +1,5 @@
-use 5.010;
+use 5.008001;
{
local $SIG{__WARN__} = sub {};
diff --git a/lib/XBase.pm b/lib/XBase.pm
index b345c7e..447c86d 100644
--- a/lib/XBase.pm
+++ b/lib/XBase.pm
@@ -10,7 +10,7 @@ XBase - Perl module for reading and writing the dbf files
# ############
package XBase;
-use 5.010;
+use 5.008001;
use strict;
use XBase::Base; # will give us general methods
diff --git a/lib/XBase/FAQ.pod b/lib/XBase/FAQ.pod
index dc5cb10..5d35eb9 100644
--- a/lib/XBase/FAQ.pod
+++ b/lib/XBase/FAQ.pod
@@ -19,7 +19,7 @@ Jan Pazdziora
=item What Perl version do I need? What other modules?
-You need perl 5.10 or newer. You need B<DBI> module version 1.00
+You need perl 5.8.1 or newer. You need B<DBI> module version 1.00
or higher, if you want to use the DBD driver (which you should).
=item Can I use B<XBase.pm> under Windows 95/NT?