X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=87d6f090040e84b561ed66fe9b0a77df9672ac8b;hb=63630a22d1abb7c3de7afa2e5709b9eca894c40c;hp=8c1653c9da7a688db20d3994b20738b4a6598305;hpb=371c6f1a20aa6e41a85958eaab9fc4faacf9ceab;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 8c1653c..87d6f09 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,7 @@ requires 'HTTP::Request'; requires 'HTTP::Response'; requires 'HTTP::Request::AsCGI' => '0.8'; requires 'LWP::UserAgent'; -requires 'Module::Pluggable' => '3.01'; +requires 'Module::Pluggable' => '3.9'; requires 'Path::Class' => '0.09'; requires 'Scalar::Util'; requires 'Sub::Exporter'; @@ -134,7 +134,8 @@ sub darwin_check_no_resource_forks { # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE # On 10.5 (Leopard) it wants COPYFILE_DISABLE - my $attr = $osx_ver eq '10.5' ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE'; + die("Oh, you got Snow Lepoard, snazzy. Please read the man page for tar to find out if Apple renamed COPYFILE_DISABLE again and fix this Makefile.PL please?\n") if $osx_ver =~ /^10.6/; + my $attr = $osx_ver =~ /^10.5/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE'; makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}. qq{ echo "You must set the ENV variable $attr to true,"; }.