]> git.sesse.net Git - www-csrf/commitdiff
Declare dependencies in PREREQ_PM.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 12 Nov 2013 18:23:41 +0000 (19:23 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 12 Nov 2013 18:25:12 +0000 (19:25 +0100)
Makefile.PL

index 6c78496d94ec55c447a6c95f38634f406bc1323e..29dea65ad6be89e7577c02f3de0cf8f06b6edada 100644 (file)
@@ -1,7 +1,13 @@
 use ExtUtils::MakeMaker;
 
+my %PREREQ_PM = (
+       'Bytes::Random::Secure' => 0,
+       'Digest::HMAC_SHA1' => 0
+);
+
 WriteMakefile(
        NAME              => "WWW::CSRF",
-       VERSION_FROM      => "lib/WWW/CSRF.pm"
+       VERSION_FROM      => "lib/WWW/CSRF.pm",
+       PREREQ_PM         => \%PREREQ_PM
 );