Patch (redesign): Checking for existing header-files
[email protected] ("Leich Tobias")
| Newsgroups | perl.sdl.devel |
|---|---|
| Message-ID | <[email protected]> |
Mit freundlichen Grüßen/Best regards Tobias Leich Softwareentwicklung & Systemadministration Service Management Center telent services GmbH Rheinstraße 10B, D-14513 Teltow Tel.: +49 (0) 3328 / 4590 512 Fax.: +49 (0) 3328 / 4590 55 512 Mobil: +49 (0) 151 / 580 43 596 E-Mail: [email protected] <mailto:[email protected]> Internet: www.telent.de <http://www.telent.de/> telent Services GmbH, Sitz Rheinstraße 10B, D-14513 Teltow Geschäftsführer: Robert Blum, Hubert Rehm, Fritz Lohr Registergericht: Amtsgericht Potsdam - HRB 19612 P Umsatzsteuer-Identifikationsnummer gemäß § 27 a Umsatzsteuergesetz: DE 137227829
patch.diff
(text/plain, 391 B)
diff --git a/make/lib/SDL/Build.pm b/make/lib/SDL/Build.pm
index a5f3cf8..5402cff 100644
--- a/make/lib/SDL/Build.pm
+++ b/make/lib/SDL/Build.pm
@@ -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