From 8b4b36537f9cc952efdc886e10b3553a694a2290 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Tue, 6 May 2008 18:23:41 +0000 Subject: [PATCH] Require 5.6. --- Build.PL | 1 + Changes | 2 ++ lib/Apache/FakeTable.pm | 1 + 3 files changed, 4 insertions(+) diff --git a/Build.PL b/Build.PL index 1b089b0..aef39ba 100644 --- a/Build.PL +++ b/Build.PL @@ -4,6 +4,7 @@ my $build = Module::Build->new( module_name => 'Apache::FakeTable', license => 'perl', create_makefile_pl => 'passthrough', + requires => { perl => 5.006 }, configure_requires => { 'Module::Build' => '0.2701' }, build_requires => { 'Module::Build' => '0.2701', diff --git a/Changes b/Changes index 092a7ff..3bce466 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,8 @@ Revision history for Perl extension Apache::FakeTable. - Fixed a pasto in the Support section. - Added Module::Build to the "build_requires" parameter in Build.PL to eliminate a warning during `make dist`. + - Now requires 5.6 or higher. It always did, but now it's explicit. + 5.5 failure reported by srezic. 0.03 2008-04-02T00:14:25 - Updated pod.t to use newer version of Test::Pod. diff --git a/lib/Apache/FakeTable.pm b/lib/Apache/FakeTable.pm index 89ebf52..57fb82e 100644 --- a/lib/Apache/FakeTable.pm +++ b/lib/Apache/FakeTable.pm @@ -1,5 +1,6 @@ package Apache::FakeTable; use strict; +use 5.006; use vars qw($VERSION); $VERSION = '0.04';