use strict; use warnings; BEGIN { require 5.008001; } use ExtUtils::MakeMaker 6.30; my %WriteMakefileArgs = ( 'ABSTRACT' => 'A fully event-driven IRC client module', 'AUTHOR' => 'Chris Williams , Hinrik Örn Sigurðsson ', 'BUILD_REQUIRES' => { 'Test::Differences' => '0.61', 'Test::More' => '0.47' }, 'CONFIGURE_REQUIRES' => { 'ExtUtils::MakeMaker' => '6.30' }, 'DISTNAME' => 'POE-Component-IRC', 'EXE_FILES' => [], 'LICENSE' => 'perl', 'NAME' => 'POE::Component::IRC', 'PREREQ_PM' => { 'IRC::Utils' => '0.12', 'POE' => '1.311', 'POE::Component::Syndicator' => '0', 'POE::Driver::SysRW' => '0', 'POE::Filter::IRCD' => '2.42', 'POE::Filter::Line' => '0', 'POE::Filter::Stackable' => '0', 'POE::Filter::Stream' => '0', 'POE::Session' => '0', 'POE::Wheel::ReadWrite' => '0', 'POE::Wheel::SocketFactory' => '0' }, 'VERSION' => '6.78', 'test' => { 'TESTS' => 't/01_base/*.t t/02_behavior/*.t t/03_subclasses/*.t t/04_plugins/01_ctcp/*.t t/04_plugins/02_connector/*.t t/04_plugins/03_botaddressed/*.t t/04_plugins/04_bottraffic/*.t t/04_plugins/05_isupport/*.t t/04_plugins/06_plugman/*.t t/04_plugins/07_console/*.t t/04_plugins/08_proxy/*.t t/04_plugins/09_nickreclaim/*.t t/04_plugins/10_followtail/*.t t/04_plugins/11_cycleempty/*.t t/04_plugins/12_autojoin/*.t t/04_plugins/13_botcommand/*.t t/04_plugins/14_logger/*.t t/04_plugins/15_nickservid/*.t t/04_plugins/16_whois/*.t t/04_plugins/17_dcc/*.t t/05_regression/*.t' } ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) { my $br = delete $WriteMakefileArgs{BUILD_REQUIRES}; my $pp = $WriteMakefileArgs{PREREQ_PM}; for my $mod ( keys %$br ) { if ( exists $pp->{$mod} ) { $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod}; } else { $pp->{$mod} = $br->{$mod}; } } } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs);