diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2015-05-12 23:27:06 -0700 |
---|---|---|
committer | Isaac Dunham <ibid.ag@gmail.com> | 2015-05-13 18:53:07 -0700 |
commit | c065b28caf3b160f347b3f554f96925c5e667259 (patch) | |
tree | 608378c3d93656fbdc58a2e8d9f856ef3a12859c /ipc | |
parent | 1f31aa5170d9213bc98da9e7ed45c6947c618023 (diff) | |
download | palemoon-gre-c065b28caf3b160f347b3f554f96925c5e667259.tar.gz |
execinfo.h is glibc specific.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/chromium/src/base/debug_util_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/chromium/src/base/debug_util_posix.cc b/ipc/chromium/src/base/debug_util_posix.cc index b32c86d41..e06007509 100644 --- a/ipc/chromium/src/base/debug_util_posix.cc +++ b/ipc/chromium/src/base/debug_util_posix.cc @@ -5,7 +5,7 @@ #include "build/build_config.h" #include "base/debug_util.h" -#define MOZ_HAVE_EXECINFO_H (defined(OS_LINUX) && !defined(ANDROID)) +#define MOZ_HAVE_EXECINFO_H (defined(OS_LINUX) && defined(__GLIBC__)) #include <errno.h> #include <fcntl.h> |