X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=63a99cdbf71348a7595dcb51ad83089312311917;hb=dacd8b0ea87f4c6a6f8cd52360007170835093d8;hp=e9475f2597ab206db5ef137da7322e53ffb6fdf5;hpb=1a3dd976ad46b71f2eabd3230a393c7a1aa84b6e;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index e9475f2..63a99cd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -80,6 +80,8 @@ author_requires 'File::Copy::Recursive'; # For http server test author_requires 'Catalyst::Devel', '1.0'; # For http server test author_requires 'Catalyst::Engine::PSGI'; author_requires 'Test::Without::Module'; +author_requires 'Starman'; +author_requires 'MooseX::Daemonize'; author_tests 't/author'; author_requires(map {; $_ => 0 } qw( @@ -168,8 +170,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',"; }.