build warns now for non-existing header files
unknown [Tue, 20 Oct 2009 14:59:11 +0000 (16:59 +0200)]
lib/SDL.pm
make/lib/SDL/Build.pm

index 360a108..baa0da8 100644 (file)
@@ -118,8 +118,11 @@ per class basis.
        Nick: nferraz
        Name: Nelson Ferraz
 
-       Nice: acme
+       Nick: acme
        Name: Leon Brocard
+       
+       Nick: FROGGS
+       Name: Tobias Leich
 
 =head2 Maintainance 
        
index a5f3cf8..5402cff 100644 (file)
@@ -197,6 +197,9 @@ sub find_header
                next unless -e File::Spec->catfile( $inc_dir, $header );
                return ($inc_dir, $includes->{$inc_dir});
        }
+
+       print STDERR "Warning: header file '$header' not found.\n";
+       return;
 }
 
 sub write_sdl_config