Title: [147929] trunk/Source/WTF
Revision
147929
Author
[email protected]
Date
2013-04-08 10:37:55 -0700 (Mon, 08 Apr 2013)

Log Message

REGRESSION(r147894): Broke WTFReportBacktrace() on Mac.
<http://webkit.org/b/114174>

Reviewed by Anders Carlsson.

An #elif !OS(ANDROID) block was erroneously removed, turn it into an #else instead since
that path will still be taken for OS(DARWIN).

* wtf/Assertions.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (147928 => 147929)


--- trunk/Source/WTF/ChangeLog	2013-04-08 17:26:01 UTC (rev 147928)
+++ trunk/Source/WTF/ChangeLog	2013-04-08 17:37:55 UTC (rev 147929)
@@ -1,3 +1,15 @@
+2013-04-08  Andreas Kling  <[email protected]>
+
+        REGRESSION(r147894): Broke WTFReportBacktrace() on Mac.
+        <http://webkit.org/b/114174>
+
+        Reviewed by Anders Carlsson.
+
+        An #elif !OS(ANDROID) block was erroneously removed, turn it into an #else instead since
+        that path will still be taken for OS(DARWIN).
+
+        * wtf/Assertions.cpp:
+
 2013-04-08  Oliver Hunt  <[email protected]>
 
         Build fix.

Modified: trunk/Source/WTF/wtf/Assertions.cpp (147928 => 147929)


--- trunk/Source/WTF/wtf/Assertions.cpp	2013-04-08 17:26:01 UTC (rev 147928)
+++ trunk/Source/WTF/wtf/Assertions.cpp	2013-04-08 17:37:55 UTC (rev 147929)
@@ -278,6 +278,8 @@
 #    if defined(__GLIBC__) && !defined(__UCLIBC__)
 #      define WTF_USE_BACKTRACE_SYMBOLS 1
 #    endif
+#  else
+#    define WTF_USE_DLADDR 1
 #  endif
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to