The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This Makefile.PL for POE-Loop-EV was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use 5.006;
use ExtUtils::MakeMaker;

use POE::Test::Loops 1.360;
use File::Spec;

my %WriteMakefileArgs = (
  "ABSTRACT" => "a bridge that supports EV from POE",
  "AUTHOR" => "Andy Grundman <andy\@hybridized.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "POE::Test::Loops" => "1.360"
  },
  "DISTNAME" => "POE-Loop-EV",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "POE::Loop::EV",
  "PREREQ_PM" => {
    "EV" => "4.0",
    "POE" => "1.366"
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "POE::Test::Loops" => "1.360",
    "Test::More" => "0.47"
  },
  "VERSION" => "0.14",
  "test" => {
    "TESTS" => "t/*.t t/*/*/*.t"
  }
);

%WriteMakefileArgs = (
    %WriteMakefileArgs,
    (clean => { FILES => 't/30_loops/*/* t/30_loops/* t/30_loops' }),
);

my %FallbackPrereqs = (
  "EV" => "4.0",
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "POE" => "1.366",
  "POE::Test::Loops" => "1.360",
  "Test::More" => "0.47"
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);

# Switch to default behavior if STDIN isn't a tty.
unless (-t STDIN) {
  warn(
    "\n",
    "=============================================\n\n",
    "STDIN is not a terminal.  Assuming --default.\n\n",
    "=============================================\n\n",
  );
  push @ARGV, "--default";
}
# Remind the user she can use --default.
unless (grep /^--default$/, @ARGV) {
  warn(
    "\n",
    "=============================================\n\n",
    "Prompts may be bypassed by running:\n",
    "   $^X $0 --default\n\n",
    "=============================================\n\n",
  );
}
# Should we skip the network tests?
my $prompt = (
  "Some of POE's tests require a functional network.\n" .
  "You can skip these tests if you'd like.\n\n" .
  "Would you like to skip the network tests?"
);
my $ret = "n";
if (grep /^--default$/, @ARGV) {
  print $prompt, " [$ret] $ret\n\n";
}
else {
  $ret = prompt($prompt, "n");
}
my $marker = 'run_network_tests';
unlink $marker;
unless ($ret =~ /^Y$/i) {
  open(TOUCH,"+>$marker") and close TOUCH;
}
print "\n";
my $dir = File::Spec->rel2abs(join '', (File::Spec->splitpath(__FILE__))[0, 1]); # as in Dir::Self
unshift @INC, File::Spec->catdir($dir, 'ev_tester_lib'); # for POE::Test::Loops to find
POE::Test::Loops::generate('t/30_loops', [qw(EV EV::Tester::Devpoll EV::Tester::Epoll
  EV::Tester::Kqueue EV::Tester::Poll EV::Tester::Port EV::Tester::Select)], 0);