mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
46782dbc74
(fixes SeaMonkey building on CentOS5.x)
22 lines
680 B
Diff
22 lines
680 B
Diff
# HG changeset patch
|
|
# User Justin Wood <Callek@gmail.com>
|
|
# Date 1372046309 14400
|
|
# Node ID d6fc88d46b67cd522998ab6a9320b00b6091d5ce
|
|
# Parent aef71cf41cecf4c3d7bef313bff502c98d5883ce
|
|
Bug 886209 - SHT_ARM_EXIDX not defined on older glibc versions. r=glandium
|
|
(fixes SeaMonkey building on CentOS5.x)
|
|
|
|
diff --git src/common/linux/dump_symbols.cc
|
|
--- a/src/common/linux/dump_symbols.cc
|
|
+++ b/src/common/linux/dump_symbols.cc
|
|
@@ -71,7 +71,8 @@
|
|
#include "common/using_std_string.h"
|
|
#include "common/logging.h"
|
|
|
|
-#if defined(__ANDROID__) && !defined(SHT_ARM_EXIDX)
|
|
+#ifndef SHT_ARM_EXIDX
|
|
+// bionic and older glibc don't define it
|
|
# define SHT_ARM_EXIDX (SHT_LOPROC + 1)
|
|
#endif
|
|
|