svn commit: r276171 - projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf

Ed Maste emaste at FreeBSD.org
Wed Dec 24 03:52:54 UTC 2014


Author: emaste
Date: Wed Dec 24 03:52:50 2014
New Revision: 276171
URL: https://svnweb.freebsd.org/changeset/base/276171

Log:
  Add stdint include for SIZE_MAX and similar
  
  Upstream libelf pulls it in via another header that we do not use.

Modified:
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/elf_data.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_cap.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_dyn.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_ehdr.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_move.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_phdr.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rel.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rela.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_shdr.c
  projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_sym.c

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/elf_data.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/elf_data.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/elf_data.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -27,6 +27,7 @@
 #include <assert.h>
 #include <errno.h>
 #include <libelf.h>
+#include <stdint.h>
 #include <stdlib.h>
 
 #include "_libelf.h"

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_cap.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_cap.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_cap.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_dyn.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_dyn.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_dyn.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_ehdr.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_ehdr.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_ehdr.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -30,6 +30,7 @@
 #include <gelf.h>
 #include <libelf.h>
 #include <limits.h>
+#include <stdint.h>
 #include <string.h>
 
 #include "_libelf.h"

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_move.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_move.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_move.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_phdr.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_phdr.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_phdr.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <gelf.h>
 #include <libelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rel.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rel.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rel.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rela.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rela.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_rela.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_shdr.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_shdr.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_shdr.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -30,6 +30,7 @@
 #include <gelf.h>
 #include <libelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 

Modified: projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_sym.c
==============================================================================
--- projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_sym.c	Wed Dec 24 03:50:07 2014	(r276170)
+++ projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf/gelf_sym.c	Wed Dec 24 03:52:50 2014	(r276171)
@@ -29,6 +29,7 @@
 #include <assert.h>
 #include <gelf.h>
 #include <limits.h>
+#include <stdint.h>
 
 #include "_libelf.h"
 


More information about the svn-src-projects mailing list