msvcmaker: Update the HAVE_* defines for headers in the generated config.h file.
Update list of headers present in the MSVC build environment. fcntl.h isn't detected by configure and so isn't needed.
This commit is contained in:
parent
c71d16c3e9
commit
efe81dd8ed
|
@ -1126,7 +1126,7 @@ sub _generate_config_h($) {
|
|||
print OUT "#define __WINE_CONFIG_H\n";
|
||||
print OUT "\n";
|
||||
|
||||
my @headers = qw(direct.h fcntl.h io.h string.h process.h);
|
||||
my @headers = qw(direct.h float.h memory.h io.h stdlib.h string.h process.h sys/stat.h sys/types.h);
|
||||
foreach my $header (@headers) {
|
||||
$header =~ y/\.\//__/;
|
||||
push @defines, "HAVE_\U$header\E 1";
|
||||
|
|
Loading…
Reference in New Issue