diff --git a/src/ChangeLog b/src/ChangeLog index 127d5df5..63385a94 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-04-11 Hrvoje Niksic + + * config-post.h: Don't define _VA_LIST under Solaris; it breaks + compilation with GCC 3.4 under Solaris 10. (It was defined to + avoid a warning with previous versions of GCC.) + 2005-04-11 Hrvoje Niksic * xmalloc.c (register_ptr): Warn the user to increase SZ prior to diff --git a/src/config-post.h b/src/config-post.h index 5107c95b..fe35226a 100644 --- a/src/config-post.h +++ b/src/config-post.h @@ -39,11 +39,6 @@ void *alloca (); #ifdef solaris # define NAMESPACE_TWEAKS -# ifdef __GNUC__ -/* Prevent stdio.h from declaring va_list and thus tripping gcc's - stdarg.h. */ -# define _VA_LIST -# endif #endif #ifdef __linux__