mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Only define _VA_LIST when compiling with gcc.
Published in <sxsit6w1x5t.fsf@florida.arsdigita.de>.
This commit is contained in:
parent
4aaf8fdcea
commit
faf77c8f51
@ -1,3 +1,7 @@
|
|||||||
|
2002-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
|
* config.h.in: Only define _VA_LIST when compiled with gcc.
|
||||||
|
|
||||||
2002-04012 Ian Abbott <abbotti@mev.co.uk>
|
2002-04012 Ian Abbott <abbotti@mev.co.uk>
|
||||||
|
|
||||||
* http.c (http_loop): Compensate for MS Windows two-second
|
* http.c (http_loop): Compensate for MS Windows two-second
|
||||||
@ -18,6 +22,7 @@
|
|||||||
|
|
||||||
* recur.c (download_child_p): Ditto.
|
* recur.c (download_child_p): Ditto.
|
||||||
|
|
||||||
|
>>>>>>> 1.382
|
||||||
2002-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
2002-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
* config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
|
* config.h.in: Define _VA_LIST on Solaris to prevent stdio.h from
|
||||||
|
@ -257,8 +257,11 @@ char *alloca ();
|
|||||||
|
|
||||||
#ifdef solaris
|
#ifdef solaris
|
||||||
# define NAMESPACE_TWEAKS
|
# define NAMESPACE_TWEAKS
|
||||||
/* Prevent stdio.h from declaring va_list. */
|
# ifdef __GNUC__
|
||||||
# define _VA_LIST
|
/* Prevent stdio.h from declaring va_list and thus tripping gcc's
|
||||||
|
stdarg.h. */
|
||||||
|
# define _VA_LIST
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
|
Loading…
Reference in New Issue
Block a user