+2001-10-31 Bruno Haible <haible@clisp.cons.org>
+
+ * Makefile.am (execute.lo, javacomp.lo, javaexec.lo, pipe-bidi.lo,
+ pipe-in.lo, pipe-out.lo, progname.lo, wait-process.lo, xerror.lo):
+ Depend on @STDBOOL_H@.
+ * execute.c (EXIT_FAILURE): Provide a fallback definition, for SunOS 4.
+ * pipe-bidi.c (EXIT_FAILURE): Likewise.
+ * pipe-in.c (EXIT_FAILURE): Likewise.
+ * pipe-out.c (EXIT_FAILURE): Likewise.
+ * wait-process.c (EXIT_FAILURE): Likewise.
+ * xerror.c (EXIT_FAILURE): Likewise.
+ (xasprintf): Use VA_START instead of va_start.
+
2001-10-28 Bruno Haible <haible@clisp.cons.org>
* progname.c (set_program_name) [BeOS]: Make program_name absolute
INCLUDES = -I. -I$(srcdir) -I.. -I../intl -I$(top_srcdir)/intl
-all-local: @STDBOOL_H@
+all-local execute.lo javacomp.lo javaexec.lo pipe-bidi.lo pipe-in.lo pipe-out.lo progname.lo wait-process.lo xerror.lo: @STDBOOL_H@
stdbool.h: stdbool.h.in
cp $(srcdir)/stdbool.h.in stdbool.h
MOSTLYCLEANFILES = @STDBOOL_H@
#include "mbswidth.h"
#include "libgettext.h"
+#ifndef EXIT_FAILURE
+# define EXIT_FAILURE 1
+#endif
+
#define _(str) gettext (str)
#if __STDC__
va_list args;
char *result;
- va_start (args, format);
+ VA_START (args, format);
#if !__STDC__ && !NEW_VARARGS
format = va_arg (args, const char *);
#endif