Commit c71d16c3 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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

parent fb4355cb
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment