diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL index a919bae..5b79606 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,7 @@ use ExtUtils::MakeMaker; use 5.004; -my @utils = qw(get-rd-token get-rd-week update-rd-tokens rhrd-user rhrd-group rhrd-show rhrd-sanity-check); +my @utils = qw(get-rd-token get-rd-week update-rd-tokens rhrd-user rhrd-group rhrd-schedules rhrd-show rhrd-sanity-check); WriteMakefile( NAME => 'RHRD', @@ -14,7 +14,12 @@ WriteMakefile( "DBI" => 0, "POSIX" => 0, "DateTime" => 0, - "DateTime::TimeZone" => 0 + "DateTime::TimeZone" => 0, + "DateTime::Format::Strptime" => 0, + "Date::Calc" => 0, + "JSON::Any" => 0, + "URI" => 0, + "LWP" => 0 }, EXE_FILES => [ map { "utils/$_" } @utils ], ); |