From 33c069ae30ad76384c2e173d3d3f9bbc54354af4 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Tue, 23 Sep 2003 22:51:11 +0000 Subject: [PATCH] Added some needed config.h entries. --- tools/winapi/msvcmaker | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index e322a8cd6ca..9db7b3be0d0 100755 --- a/tools/winapi/msvcmaker +++ b/tools/winapi/msvcmaker @@ -1240,7 +1240,7 @@ sub _generate_config_h { print OUT "#define __WINE_CONFIG_H\n"; print OUT "\n"; - my @headers = qw(direct.h io.h); + my @headers = qw(direct.h fcntl.h io.h string.h process.h); foreach my $header (@headers) { $header =~ y/\.\//__/; print OUT "#define HAVE_\U$header\E\n"; @@ -1250,9 +1250,11 @@ sub _generate_config_h { my @functions = qw( _alldiv _allmul _allrem _aulldiv _aullrem _access _chdir _close _lseek _mkdir _open _pclose _popen _read _rmdir _write _stat - _snprintf _stricmp _strnicmp _vsnprintf _wcsicmp wcslen + _snprintf _spawnvp _stricmp _strnicmp _vsnprintf _wcsicmp ecvt fcvt gcvt + memmove strerror + wcslen ); foreach my $function (@functions) { print OUT "#define HAVE_\U$function\E 1\n"; @@ -1275,6 +1277,14 @@ sub _generate_config_h { print OUT "#define __ASM_NAME(name) name\n"; print OUT "\n"; + print OUT "/* Define to the assembler keyword used to specify a word value */"; + print OUT "define __ASM_SHORT \".short\""; + print OUT "\n"; + + print OUT "/* Define to the assembler keyword used to specify an ASCII string */"; + print OUT "#define __ASM_STRING \".string\""; + print OUT "\n"; + print OUT "/* Define to the address where bug reports for this package should be sent. */\n"; print OUT "#define PACKAGE_BUGREPORT \"\"\n"; print OUT "\n"; -- 2.11.4.GIT