Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 Dec 2014 03:52:51 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r276171 - projects/elftoolchain-update-r3130/contrib/elftoolchain/libelf
Message-ID:  <201412240352.sBO3qp9g053971@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412240352.sBO3qp9g053971>