Rob Shearman : msvcmaker: Update the HAVE_* defines for headers in the generated config.h file.
Module: wine Branch: master Commit: efe81dd8eddab7de673a912040f6df58da8a72cc URL: http://source.winehq.org/git/wine.git/?a=commit;h=efe81dd8eddab7de673a912040... Author: Rob Shearman <robertshearman(a)gmail.com> Date: Thu Sep 25 16:43:36 2008 +0100 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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 7a74829..fdf744a 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";
participants (1)
-
Alexandre Julliard