From 3e174e225933264c3f7363782a1b6e4e4ba5dc15 Mon Sep 17 00:00:00 2001 From: yappo Date: Thu, 23 Oct 2008 08:54:30 +0000 Subject: [PATCH] Makefile.PL update --- Makefile.PL | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 2b7046d..4cb5a81 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,13 @@ use inc::Module::Install; +use 5.008001; name 'String-Diff'; all_from 'lib/String/Diff.pm'; -requires $_ for (qw/ Algorithm::Diff /); +requires 'Algorithm::Diff'; build_requires 'Test::More'; +build_requires 'YAML'; + use_test_base; auto_include; WriteAll;