svn commit: r335893 - in head: contrib/blacklist/bin lib/libpjdlog sbin/hastd

Ruslan Bukin br at FreeBSD.org
Tue Jul 3 15:48:36 UTC 2018


Author: br
Date: Tue Jul  3 15:48:34 2018
New Revision: 335893
URL: https://svnweb.freebsd.org/changeset/base/335893

Log:
  Revert 335888 ("Ensure va_list is declared by including stdarg.h.")
  
  The issue was caused by header pollution brought by GCC 8.1.
  
  We now have to remove include-fixed headers in the GCC installation
  directory.
  
  Sponsored by:	DARPA, AFRL
  Pointed out by:	jhb

Modified:
  head/contrib/blacklist/bin/blacklistctl.c
  head/lib/libpjdlog/pjdlog.c
  head/sbin/hastd/pjdlog.c

Modified: head/contrib/blacklist/bin/blacklistctl.c
==============================================================================
--- head/contrib/blacklist/bin/blacklistctl.c	Tue Jul  3 15:24:09 2018	(r335892)
+++ head/contrib/blacklist/bin/blacklistctl.c	Tue Jul  3 15:48:34 2018	(r335893)
@@ -35,7 +35,6 @@
 #include <sys/cdefs.h>
 __RCSID("$NetBSD: blacklistctl.c,v 1.21 2016/11/02 03:15:07 jnemeth Exp $");
 
-#include <stdarg.h>
 #include <stdio.h>
 #include <time.h>
 #ifdef HAVE_LIBUTIL_H

Modified: head/lib/libpjdlog/pjdlog.c
==============================================================================
--- head/lib/libpjdlog/pjdlog.c	Tue Jul  3 15:24:09 2018	(r335892)
+++ head/lib/libpjdlog/pjdlog.c	Tue Jul  3 15:48:34 2018	(r335893)
@@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$");
 #include <errno.h>
 #include <libutil.h>
 #include <limits.h>
-#include <stdarg.h>
 #include <printf.h>
+#include <stdarg.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>

Modified: head/sbin/hastd/pjdlog.c
==============================================================================
--- head/sbin/hastd/pjdlog.c	Tue Jul  3 15:24:09 2018	(r335892)
+++ head/sbin/hastd/pjdlog.c	Tue Jul  3 15:48:34 2018	(r335893)
@@ -41,8 +41,8 @@ __FBSDID("$FreeBSD$");
 #include <assert.h>
 #include <errno.h>
 #include <libutil.h>
-#include <stdarg.h>
 #include <printf.h>
+#include <stdarg.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>


More information about the svn-src-head mailing list