|
From: <sv...@va...> - 2016-04-24 17:11:52
|
Author: sewardj
Date: Sun Apr 24 18:11:44 2016
New Revision: 15869
Log:
Fix compilation breakage on platforms that do already have a definition
for Elf{32,64}_Chdr. This is fallout from r15868. That commit provided
a configure test, but the resulting config.h was not included here, causing
the test results to be ignored.
Modified:
trunk/coregrind/m_debuginfo/readelf.c
Modified: trunk/coregrind/m_debuginfo/readelf.c
==============================================================================
--- trunk/coregrind/m_debuginfo/readelf.c (original)
+++ trunk/coregrind/m_debuginfo/readelf.c Sun Apr 24 18:11:44 2016
@@ -51,6 +51,7 @@
#include "priv_readdwarf.h" /* 'cos ELF contains DWARF */
#include "priv_readdwarf3.h"
#include "priv_readexidx.h"
+#include "config.h"
/* --- !!! --- EXTERNAL HEADERS start --- !!! --- */
#include <elf.h>
|