use strict; use warnings; use ExtUtils::MakeMaker 6.31; my %WriteMakefileArgs = ( 'ABSTRACT' => 'Authenticate your Catalyst application\'s users using Facebook\'s OAuth 2.0', 'AUTHOR' => 'Florian Ragwitz ', 'BUILD_REQUIRES' => { 'Catalyst' => '0', 'Catalyst::Controller' => '0', 'Test::More' => '0' }, 'CONFIGURE_REQUIRES' => { 'ExtUtils::MakeMaker' => '6.31' }, 'DISTNAME' => 'Catalyst-Authentication-Credential-Facebook-OAuth2', 'EXE_FILES' => [], 'LICENSE' => 'perl', 'NAME' => 'Catalyst::Authentication::Credential::Facebook::OAuth2', 'PREREQ_PM' => { 'Facebook::Graph' => '0', 'Moose' => '0', 'MooseX::Types::Common::String' => '0', 'MooseX::Types::Moose' => '0', 'aliased' => '0', 'namespace::autoclean' => '0' }, 'VERSION' => '0.02', 'test' => { 'TESTS' => 't/*.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);