| Index: Source/WTF/wtf/Assertions.cpp
 | 
| diff --git a/Source/WTF/wtf/Assertions.cpp b/Source/WTF/wtf/Assertions.cpp
 | 
| index ad8ce86b85d6b8494b6ce0a80f5594f2467f008e..60eba442d584eeb5595157c9611ba9972df979aa 100644
 | 
| --- a/Source/WTF/wtf/Assertions.cpp
 | 
| +++ b/Source/WTF/wtf/Assertions.cpp
 | 
| @@ -279,14 +279,8 @@ void WTFReportBacktrace()
 | 
|      WTFPrintBacktrace(samples + framesToSkip, frames - framesToSkip);
 | 
|  }
 | 
|  
 | 
| -#if OS(DARWIN) || OS(LINUX)
 | 
| -#  if PLATFORM(QT) || PLATFORM(GTK)
 | 
| -#    if defined(__GLIBC__) && !defined(__UCLIBC__)
 | 
| -#      define WTF_USE_BACKTRACE_SYMBOLS 1
 | 
| -#    endif
 | 
| -#  elif !OS(ANDROID)
 | 
| -#    define WTF_USE_DLADDR 1
 | 
| -#  endif
 | 
| +#if OS(DARWIN) || (OS(LINUX) && !OS(ANDROID))
 | 
| +#define WTF_USE_DLADDR 1
 | 
|  #endif
 | 
|  
 | 
|  void WTFPrintBacktrace(void** stack, int size)
 | 
| 
 |