aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorKai Wang <kaiw@FreeBSD.org>2014-01-16 21:47:27 +0000
committerKai Wang <kaiw@FreeBSD.org>2014-01-16 21:47:27 +0000
commit4e5c697507d1729c4924a520361195ab4eb87960 (patch)
tree5d2a156cf7b274ddd652db997d746996b683185a /contrib
parent7c4a6907eeaa06a1e15cf97ec792e8a565414221 (diff)
downloadsrc-4e5c697507d1729c4924a520361195ab4eb87960.tar.gz
src-4e5c697507d1729c4924a520361195ab4eb87960.zip
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.
Notes
Notes: svn path=/projects/elftoolchain/; revision=260792
Diffstat (limited to 'contrib')
-rw-r--r--contrib/elftoolchain/libelf/libelf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/elftoolchain/libelf/libelf.h b/contrib/elftoolchain/libelf/libelf.h
index d3219d7ce251..cfe73502c5c9 100644
--- a/contrib/elftoolchain/libelf/libelf.h
+++ b/contrib/elftoolchain/libelf/libelf.h
@@ -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;