svn commit: r260942 - head/usr.sbin/pkg
Baptiste Daroussin
bapt at FreeBSD.org
Mon Jan 20 22:54:12 UTC 2014
Author: bapt
Date: Mon Jan 20 22:54:11 2014
New Revision: 260942
URL: http://svnweb.freebsd.org/changeset/base/260942
Log:
Implicit include of sys/queue.h instead of relying on gelf.h/libelf.h to bring it
Newer version of gelf.h and libelf.h does not include sys/queue.h anymore
Submitted by: kaiw
MFC after: 3 days
Modified:
head/usr.sbin/pkg/config.c
Modified: head/usr.sbin/pkg/config.c
==============================================================================
--- head/usr.sbin/pkg/config.c Mon Jan 20 22:54:06 2014 (r260941)
+++ head/usr.sbin/pkg/config.c Mon Jan 20 22:54:11 2014 (r260942)
@@ -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-all
mailing list