msvcmaker: Add HAVE_* defines for some types present in the MSVC build environment.

This commit is contained in:
Rob Shearman 2008-09-25 16:43:29 +01:00 committed by Alexandre Julliard
parent fb4355cb5b
commit c71d16c3e9
1 changed files with 7 additions and 0 deletions

View File

@ -1145,6 +1145,13 @@ sub _generate_config_h($) {
push @defines, "HAVE_\U$function\E 1";
}
my @types = qw(
long_long off_t size_t
);
foreach my $type (@types) {
push @defines, "HAVE_\U$type\E 1";
}
foreach my $define (sort(@defines)) {
print OUT "#define $define\n";
print OUT "\n";