]> sjero.net Git - wget/blobdiff - src/log.c
[svn] Don't #define __STDC__ against the compiler's will.
[wget] / src / log.c
index e3e697b0b66d9614733920599e86bc09a9956ae4..0ac45b76ece43822635b07f709a1b5e676dd0fbd 100644 (file)
--- a/src/log.c
+++ b/src/log.c
@@ -29,15 +29,18 @@ so, delete this exception statement from your version.  */
 
 #include <config.h>
 
+/* This allows the architecture-specific .h files to specify the use
+   of stdargs regardless of __STDC__.  */
+#ifndef WGET_USE_STDARG
 /* Use stdarg only if the compiler supports ANSI C and stdarg.h is
    present.  We check for both because there are configurations where
    stdarg.h exists, but doesn't work. */
-#undef WGET_USE_STDARG
-#ifdef __STDC__
-# ifdef HAVE_STDARG_H
-#  define WGET_USE_STDARG
+# ifdef __STDC__
+#  ifdef HAVE_STDARG_H
+#   define WGET_USE_STDARG
+#  endif
 # endif
-#endif
+#endif /* not WGET_USE_STDARG */
 
 #include <stdio.h>
 #ifdef HAVE_STRING_H