1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Fix broken MSVC compile.

Submitted by Ian Abbott in <3CC5D023.4305.2F710A@localhost>.
This commit is contained in:
abbotti 2002-04-23 13:25:52 -07:00
parent fe416b3d31
commit 7a6bf2477d
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2002-04-23 Ian Abbott <abbotti@mev.co.uk>
* windows/config.h.ms: Accounted for MSVC not defining `__STDC__' when
Microsoft's extensions are enabled and define it anyway (set to `1').
Defined some things that broke as a result of this.
2002-04-20 Hrvoje Niksic <hniksic@arsdigita.com>
* po/de.po: Updated from the TP.

View File

@ -19,6 +19,19 @@
#ifndef CONFIG_H
#define CONFIG_H
/* MS Visual C does not define __STDC__ when the MSC extensions are
enabled, but you need those extensions to compile <windows.h>. */
#if !defined(__STDC__) && defined(_MSC_EXTENSIONS)
# define __STDC__ 1
#endif
/* Setting __STDC__ causes MSVC to break other stuff... */
#if __STDC__ && defined(_MSC_VER)
# define utimbuf _utimbuf
# define O_RDONLY _O_RDONLY
# define alloca _alloca
#endif
/* Define if you have the <alloca.h> header file. */
#undef HAVE_ALLOCA_H