Date: Mon, 20 Jan 2014 22:54:07 +0000 (UTC) From: Kai Wang <kaiw@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r260941 - projects/elftoolchain/usr.sbin/pkg Message-ID: <201401202254.s0KMs73c027865@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401202254.s0KMs73c027865>