svn commit: r261144 - stable/10/usr.sbin/pkg
Baptiste Daroussin
bapt at FreeBSD.org
Sat Jan 25 01:08:36 UTC 2014
Author: bapt
Date: Sat Jan 25 01:08:35 2014
New Revision: 261144
URL: http://svnweb.freebsd.org/changeset/base/261144
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
Modified:
stable/10/usr.sbin/pkg/config.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/pkg/config.c
==============================================================================
--- stable/10/usr.sbin/pkg/config.c Sat Jan 25 01:06:20 2014 (r261143)
+++ stable/10/usr.sbin/pkg/config.c Sat Jan 25 01:08:35 2014 (r261144)
@@ -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-stable-10
mailing list