summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-07-09 08:55:44 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-07-09 08:55:44 +0300
commit77946164120de0a135035621762779bfa50e82d0 (patch)
tree9864626dc37a2c227f85c51602fe6ab9f87c2c22
parent78ec9c89274273bd864089c3fb10f62319790dec (diff)
downloadconfig-haproxy-77946164120de0a135035621762779bfa50e82d0.tar.gz
config-haproxy-77946164120de0a135035621762779bfa50e82d0.tar.bz2
Raise minimal Perl requirement to 5.010.
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Config/HAProxy.pm3
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 81e815b..d9cc6e8 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -9,7 +9,7 @@ WriteMakefile(
9 ABSTRACT_FROM => 'lib/Config/HAProxy.pm', 9 ABSTRACT_FROM => 'lib/Config/HAProxy.pm',
10 LICENSE => 'gpl_3', 10 LICENSE => 'gpl_3',
11 AUTHOR => 'Sergey Poznyakoff <gray@gnu.org>', 11 AUTHOR => 'Sergey Poznyakoff <gray@gnu.org>',
12 MIN_PERL_VERSION => 5.006, 12 MIN_PERL_VERSION => 5.010,
13 PREREQ_PM => { 13 PREREQ_PM => {
14 'Carp' => 0, 14 'Carp' => 0,
15 'Clone' => 0, 15 'Clone' => 0,
diff --git a/lib/Config/HAProxy.pm b/lib/Config/HAProxy.pm
index f99bf33..74eafa4 100644
--- a/lib/Config/HAProxy.pm
+++ b/lib/Config/HAProxy.pm
@@ -1,4 +1,5 @@
1package Config::HAProxy; 1package Config::HAProxy;
2use 5.010;
2use strict; 3use strict;
3use warnings; 4use warnings;
4use Text::Locus; 5use Text::Locus;
@@ -13,7 +14,7 @@ use File::Temp qw(tempfile);
13use File::stat; 14use File::stat;
14use Carp; 15use Carp;
15 16
16our $VERSION = '1.00'; 17our $VERSION = '1.01';
17 18
18my %sections = ( 19my %sections = (
19 global => 1, 20 global => 1,

Return to:

Send suggestions and report system problems to the System administrator.