From 620a69d0097780b1d475bccfa3def2e97cfba98e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 24 Jun 2013 21:12:20 +0000 Subject: [PATCH] Makefile.PL: declare explicit Time::HiRes dependency Time::HiRes is no longer a standard module distributed with Perl in RHEL/CentOS 6.x (and like other distros). Declaring an explicit dependency on it should help users find and install the correct package for their distro. --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index 8c49386..204b4aa 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -17,6 +17,7 @@ WriteMakefile( AUTHOR => 'Brad Fitzpatrick ', ABSTRACT => 'MogileFS client library', PREREQ_PM => { + 'Time::HiRes' => 0, 'IO::WrapTie' => '2.102', 'LWP::Simple' => 0, fields => 0, -- 2.11.4.GIT