X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ff2682cda5d24e1996688edcbde47b7c6a7d7453;hb=bc418819ff5144637045abb29ad5e323053eef79;hp=20d040456284ae7a1f6d8eb44c7f6958f8f61bd6;hpb=20e84e7428168757b5400fd270fad850ec9e46ef;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 20d0404..ff2682c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -58,8 +58,6 @@ perl_version '5.008001'; ### All of them *MUST* go to DBIx::Class::Optional::Dependencies ### my $runtime_requires = { - # FIXME - temporary, needs throwing out for something more efficient - 'Data::Compare' => '1.22', # DBI itself should be capable of installation and execution in pure-perl # mode. However it has never been tested yet, so consider XS for the time @@ -206,7 +204,12 @@ for my $mod (sort keys %final_req) { # IFF we are running interactively auto_install(); -WriteAll(); +{ + # M::I understands unicode in meta but does not write with the right + # layers - fhtagn!!! + local $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /Wide character in print/ }; + WriteAll(); +} exit 0;