OSDN Git Service

Check/Describe POE version (require 1.007 or later) ticket: #19294
authorishikawa <ishikawa@180c8125-5b33-4295-ad04-72a68a15b4cc>
Thu, 22 Oct 2009 11:28:15 +0000 (11:28 +0000)
committerishikawa <ishikawa@180c8125-5b33-4295-ad04-72a68a15b4cc>
Thu, 22 Oct 2009 11:28:15 +0000 (11:28 +0000)
ChangeLog
Makefile.PL
doc/environment.html
t/00_required_modules.t

index 66e2e9a..dd81be6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-22  ISHIKAWA Mutsumi <ishikawa@hanzubon.jp>
+       * Makefile.PL, t/00_required_modules.t, doc/environment.html:
+         Check/Describe POE version (require 1.007 or later)
+         (ticket: #19294)
+
 2009-10-21  Makoto Matsushita  <matusita@jp.FreeBSD.org>
         * keitairc: call $poe_kernel->has_forked to tell POE::Kernel
         keitairc now runs on a child process (ticket #19079).
index 64d05a0..791424a 100644 (file)
@@ -1,5 +1,5 @@
 # -*-perl-*-
-# $Id: Makefile.PL,v 1.6 2009-10-16 11:19:07 ishikawa Exp $
+# $Id: Makefile.PL,v 1.7 2009-10-22 11:28:15 ishikawa Exp $
 # $Source: /home/ishikawa/work/keitairc/tmp/keitairc/Makefile.PL,v $
 
 use 5.8.0;
@@ -17,6 +17,7 @@ WriteMakefile(
        AUTHOR => 'Jun Morimoto <morimoto@mrmt.net>',
        LICENSE => 'GPL2',
        PREREQ_PM => {
+               'POE' => "1.007",
                'POE::Component::Server::TCP' => 0,
                'POE::Filter::HTTPD' => 0,
                'POE::Component::IRC' => 0,
index 9ee2fea..3c1c99b 100644 (file)
@@ -53,6 +53,7 @@
     </p>
 
     <ul>
+      <li>POE (バージョン 1.007 以上)</li>
       <li>POE::Component::Server::TCP</li>
       <li>POE::Filter::HTTPD</li>
       <li>POE::Component::IRC</li>
index e44a71a..bbd93ac 100644 (file)
@@ -1,5 +1,5 @@
 # -*- mode: perl; coding: utf-8 -*-
-# $Id: 00_required_modules.t,v 1.1 2008-08-02 18:35:54 morimoto Exp $
+# $Id: 00_required_modules.t,v 1.2 2009-10-22 11:28:15 ishikawa Exp $
 # $Source: /home/ishikawa/work/keitairc/tmp/keitairc/t/00_required_modules.t,v $
 # Copyright (c) 2003-2008 Jun Morimoto <morimoto@mrmt.net>
 # This program is covered by the GNU General Public License 2
@@ -12,7 +12,7 @@ use lib "$FindBin::Bin/../lib";
 # check required modules
 use_ok('AppConfig');
 use_ok('Encode');
-use_ok('POE');
+use_ok('POE 1.007');
 use_ok('POE::Filter::HTTPD');
 use_ok('POE::Component::IRC');
 use_ok('POE::Component::Server::TCP');