Add -Wdeclaration-after-statement since such things will break MSVC++
Dave Rolsky [Tue, 15 Sep 2009 04:24:57 +0000 (23:24 -0500)]
Makefile.PL

index a872582..7edc92e 100644 (file)
@@ -12,7 +12,10 @@ license 'perl';
 
 require Config;
 my $ccflags = ( $Config::Config{ccflags} || '' ) . ' -I.';
-$ccflags .= ' -Wall' if -d '.svn' || -d '.git' || $ENV{MAINTAINER_MODE};
+
+if ( -d '.git' || $ENV{MAINTAINER_MODE} ) {
+    $ccflags .= ' -Wall -Wdeclaration-after-statement';
+}
 
 requires 'Carp';
 requires 'Devel::GlobalDestruction';