From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexandre Oliva To: gdb-patches@sources.redhat.com Subject: Re: GDB CVS won't build on OSF4.0's cc Date: Tue, 29 May 2001 04:12:00 -0000 Message-id: References: X-SW-Source: 2001-05/msg00479.html Another problem showed up while building gdbtk. gdb/defs.h #includes , but tcl/generic/tclInt.h #includes , because HAS_STDARG is not defined. It turns out that the va_start macro defined in varargs.h ends up overriding that of stdarg.h, so we call va_start with the wrong number of arguments. Since GDB assumes the existence of stdarg.h, I suppose this patch would be acceptable. Ok to install?