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

[svn] Don't #define alloca under MinGW32.

This commit is contained in:
hniksic 2005-06-27 04:06:12 -07:00
parent 9b2fea6958
commit f3f6af70ea
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-06-27 Hrvoje Niksic <hniksic@xemacs.org>
* config-post.h (alloca): Don't #define alloca under MinGW32,
which defines it in malloc.h, included from mswindows.h.
2005-06-27 Hrvoje Niksic <hniksic@xemacs.org>
* utils.c (get_grouping_data): Force the use of separators in C

View File

@ -57,7 +57,9 @@
#if HAVE_ALLOCA_H
# include <alloca.h>
#elif defined __GNUC__
# define alloca __builtin_alloca
# ifndef __MINGW32__
# define alloca __builtin_alloca
# endif
#elif defined _AIX
# define alloca __alloca
#elif defined _MSC_VER