Date: Sat, 25 Jan 2014 01:08:36 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r261144 - stable/10/usr.sbin/pkg Message-ID: <201401250108.s0P18aP2030083@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401250108.s0P18aP2030083>