From efe81dd8eddab7de673a912040f6df58da8a72cc Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Thu, 25 Sep 2008 16:43:36 +0100 Subject: [PATCH] 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. --- tools/winapi/msvcmaker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 7a748297624..fdf744a6d83 100755 --- a/tools/winapi/msvcmaker +++ b/tools/winapi/msvcmaker @@ -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";