X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=Makefile.PL;h=7d579177dbbc53f1c4823a528d95b78a3beb5c15;hp=4a719773dd1ffd19fe82cc48e7c8531d8ec9bdbf;hb=4e11cc7a25db3f5ff9b9eeb6cac1f6a5a39c8cc3;hpb=82e80cb1a3d0246b2e4ebc07f23599aadf9e8516 diff --git a/Makefile.PL b/Makefile.PL index 4a71977..7d57917 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -64,12 +64,12 @@ if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::A } else { unlink '.aggregating'; - tests join q{ }, - grep { $_ ne 't/aggregate.t' } - map { glob } qw[t/*.t t/aggregate/*.t]; + tests 't/*.t t/aggregate/*.t'; } + author_requires 'CatalystX::LeakChecker', '0.05'; author_requires 'File::Copy::Recursive'; # For http server test +author_requires 'Catalyst::Devel', '1.0'; # For http server test author_tests 't/author'; author_requires(map {; $_ => 0 } qw( @@ -158,8 +158,8 @@ sub darwin_check_no_resource_forks { # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE # On 10.5 (Leopard) it wants COPYFILE_DISABLE - die("Oh, you got Ceiling Cat, snazzy. Please read the man page for tar or Google to find out if Apple renamed COPYFILE_DISABLE (it was COPY_EXTENDED_ATTRIBUTES_DISABLE originally) again and fix this Makefile.PL please?\n") if $osx_ver =~ /^10.7/; - my $attr = $osx_ver =~ /^10.(5|6)/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE'; + die("Oh, you got Ceiling Cat, snazzy. Please read the man page for tar or Google to find out if Apple renamed COPYFILE_DISABLE (it was COPY_EXTENDED_ATTRIBUTES_DISABLE originally) again and fix this Makefile.PL please?\n") if $osx_ver =~ /^10.8/; + my $attr = $osx_ver =~ /^10.(5|6|7)/ ? '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',"; }.