+2006-07-25 Bruno Haible <bruno@clisp.org>
+
+ * modules/version-etc (Depends-on): Add stdarg.
+
2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
* MODULES.html.sh (File stream based Input/Output):
+2006-07-25 Bruno Haible <bruno@clisp.org>
+
+ * version-etc.c (version_etc_va): Use va_copy, assumed to be defined in
+ <stdarg.h> or config.h.
+
2006-07-24 Bruno Haible <bruno@clisp.org>
* clean-temp.h: New file, from GNU gettext.
{
va_list tmp_authors;
-#ifdef __va_copy
- __va_copy (tmp_authors, authors);
-#else
- tmp_authors = authors;
-#endif
+ va_copy (tmp_authors, authors);
n_authors = 0;
while (va_arg (tmp_authors, const char *) != NULL)
Depends-on:
gettext-h
+stdarg
configure.ac: