OSDN Git Service

Add module dependencies, listed in doc/environment.html.
authormatusita <matusita@180c8125-5b33-4295-ad04-72a68a15b4cc>
Fri, 25 Sep 2009 15:57:14 +0000 (15:57 +0000)
committermatusita <matusita@180c8125-5b33-4295-ad04-72a68a15b4cc>
Fri, 25 Sep 2009 15:57:14 +0000 (15:57 +0000)
Partly closes #18886 (part b)).

Submitted by: Jun Kuriyama, kuriyama at freebsd dotorg.

ChangeLog
Makefile.PL

index 1df7016..960e1bb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-26  Makoto Matsushita  <matusita@jp.FreeBSD.org>
+
+       * Makefile.PL: add perl module dependencies (#18886 b)),
+         those are listed in doc/environment.html (thanks to Jun Kuriyama)
+
 2009-09-25  Jun Morimoto  <morimoto@mrmt.net>
 
        * keitairc: 2.0b12 \e$B%j%j!<%9\e(B
index e280124..b866c5c 100644 (file)
@@ -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,
+       },
 )