Add $Config{cppflags} to the gcc incantation.
Jarkko Hietaniemi [Thu, 5 Apr 2001 13:00:05 +0000 (13:00 +0000)]
p4raw-id: //depot/perl@9558

ext/Errno/Errno_pm.PL

index 2d5a54b..4a11318 100644 (file)
@@ -29,7 +29,7 @@ sub process_file {
        }     
     } elsif ($Config{gccversion} ne '') { 
        # With the -dM option, gcc outputs every #define it finds
-       unless(open(FH,"$Config{cc} -E -dM $file |")) {
+       unless(open(FH,"$Config{cc} -E -dM $Config{cppflags} $file |")) {
             warn "Cannot open '$file'";
             return;
        }