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:
parent
9b2fea6958
commit
f3f6af70ea
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user