Date: Mon, 20 Jan 2014 22:54:11 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r260942 - head/usr.sbin/pkg Message-ID: <201401202254.s0KMsBAx027916@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401202254.s0KMsBAx027916>