From d99d9c9be2e805f20064cd3132def80d95c49881 Mon Sep 17 00:00:00 2001 From: matusita Date: Fri, 25 Sep 2009 15:57:14 +0000 Subject: [PATCH] Add module dependencies, listed in doc/environment.html. Partly closes #18886 (part b)). Submitted by: Jun Kuriyama, kuriyama at freebsd dotorg. --- ChangeLog | 5 +++++ Makefile.PL | 16 +++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1df7016..960e1bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-09-26 Makoto Matsushita + + * Makefile.PL: add perl module dependencies (#18886 b)), + those are listed in doc/environment.html (thanks to Jun Kuriyama) + 2009-09-25 Jun Morimoto * keitairc: 2.0b12 リリース diff --git a/Makefile.PL b/Makefile.PL index e280124..b866c5c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ # -*-perl-*- -# $Id: Makefile.PL,v 1.1 2008-08-02 18:35:54 morimoto Exp $ +# $Id: Makefile.PL,v 1.2 2009-09-25 15:57:14 matusita Exp $ # $Source: /home/ishikawa/work/keitairc/tmp/keitairc/Makefile.PL,v $ use 5.8.0; @@ -7,4 +7,18 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'keitairc', + PREREQ_PM => { + 'POE::Component::Server::TCP' => 0, + 'POE::Filter::HTTPD' => 0, + 'POE::Component::IRC' => 0, + 'URI::Escape' => 0, + 'HTTP::Response' => 0, + 'HTML::Template' => 0, + 'Net::HTTP' => 0, + 'Net::SMTP' => 0, + 'XML::Simple' => 0, + 'Proc::Daemon' => 0, + 'AppConfig' => 0, + 'Encode' => 0, + }, ) -- 2.11.0