svn commit: r260941 - projects/elftoolchain/usr.sbin/pkg

Kai Wang kaiw at FreeBSD.org
Mon Jan 20 22:54:07 UTC 2014


Author: kaiw
Date: Mon Jan 20 22:54:06 2014
New Revision: 260941
URL: http://svnweb.freebsd.org/changeset/base/260941

Log:
  Fix build: include sys/queue.h header explicitly since the gelf.h
  header comes with the new libelf will no longer include sys/queue.h.

Modified:
  projects/elftoolchain/usr.sbin/pkg/config.c

Modified: projects/elftoolchain/usr.sbin/pkg/config.c
==============================================================================
--- projects/elftoolchain/usr.sbin/pkg/config.c	Mon Jan 20 22:32:23 2014	(r260940)
+++ projects/elftoolchain/usr.sbin/pkg/config.c	Mon Jan 20 22:54:06 2014	(r260941)
@@ -29,6 +29,7 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
+#include <sys/queue.h>
 #include <sys/sbuf.h>
 #include <sys/elf_common.h>
 #include <sys/endian.h>


More information about the svn-src-projects mailing list