Date: Thu, 16 Jan 2014 21:47:28 +0000 (UTC) From: Kai Wang <kaiw@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r260792 - projects/elftoolchain/contrib/elftoolchain/libelf Message-ID: <201401162147.s0GLlSV5016044@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kaiw Date: Thu Jan 16 21:47:27 2014 New Revision: 260792 URL: http://svnweb.freebsd.org/changeset/base/260792 Log: Use FreeBSD's ELF headers instead of the elfdefinitions.h header which comes with elftoolchain. This version of libelf doesn't need to be portable; using FreeBSD's own ELF headers will avoid conflicts and make integration easier. Modified: projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Modified: projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h ============================================================================== --- projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Thu Jan 16 21:46:43 2014 (r260791) +++ projects/elftoolchain/contrib/elftoolchain/libelf/libelf.h Thu Jan 16 21:47:27 2014 (r260792) @@ -30,8 +30,8 @@ #define _LIBELF_H_ #include <sys/types.h> - -#include <elfdefinitions.h> +#include <sys/elf32.h> +#include <sys/elf64.h> /* Library private data structures */ typedef struct _Elf Elf;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401162147.s0GLlSV5016044>