michael@0: # HG changeset patch michael@0: # User Justin Wood michael@0: # Date 1372046309 14400 michael@0: # Node ID d6fc88d46b67cd522998ab6a9320b00b6091d5ce michael@0: # Parent aef71cf41cecf4c3d7bef313bff502c98d5883ce michael@0: Bug 886209 - SHT_ARM_EXIDX not defined on older glibc versions. r=glandium michael@0: (fixes SeaMonkey building on CentOS5.x) michael@0: michael@0: diff --git src/common/linux/dump_symbols.cc michael@0: --- a/src/common/linux/dump_symbols.cc michael@0: +++ b/src/common/linux/dump_symbols.cc michael@0: @@ -71,7 +71,8 @@ michael@0: #include "common/using_std_string.h" michael@0: #include "common/logging.h" michael@0: michael@0: -#if defined(__ANDROID__) && !defined(SHT_ARM_EXIDX) michael@0: +#ifndef SHT_ARM_EXIDX michael@0: +// bionic and older glibc don't define it michael@0: # define SHT_ARM_EXIDX (SHT_LOPROC + 1) michael@0: #endif michael@0: