summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dist.ini1
-rw-r--r--lib/smartmatch.pm1
-rw-r--r--lib/smartmatch/engine/core.pm1
3 files changed, 3 insertions, 0 deletions
diff --git a/dist.ini b/dist.ini
index 60c256c..8eecae1 100644
--- a/dist.ini
+++ b/dist.ini
@@ -14,6 +14,7 @@ dist = smartmatch
[Prereqs]
B::Hooks::OP::Check = 0.14
+perl = 5.010
[Prereqs / ConfigureRequires]
B::Hooks::OP::Check = 0.14
diff --git a/lib/smartmatch.pm b/lib/smartmatch.pm
index 505b7c8..071e4ea 100644
--- a/lib/smartmatch.pm
+++ b/lib/smartmatch.pm
@@ -1,6 +1,7 @@
package smartmatch;
use strict;
use warnings;
+use 5.010;
# ABSTRACT: pluggable smart matching backends
use parent 'DynaLoader';
diff --git a/lib/smartmatch/engine/core.pm b/lib/smartmatch/engine/core.pm
index cad2e5c..8edd7d6 100644
--- a/lib/smartmatch/engine/core.pm
+++ b/lib/smartmatch/engine/core.pm
@@ -1,6 +1,7 @@
package smartmatch::engine::core;
use strict;
use warnings;
+use 5.010;
use B;
use Hash::Util::FieldHash qw(idhash);