Title: [96641] trunk/Source/_javascript_Core
Revision
96641
Author
gav...@chromium.org
Date
2011-10-04 13:56:39 -0700 (Tue, 04 Oct 2011)

Log Message

fix gtk breakage caused by changeset 96595
https://bugs.webkit.org/show_bug.cgi?id=69371

ews did not catch build breakage in the gtk WebKitPluginProcess target; this patch removes
the pretty printer on gtk, which should fix the build on that platform.

Reviewed by NOBODY, this is a build fix.

* wtf/Assertions.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (96640 => 96641)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-04 20:53:09 UTC (rev 96640)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-04 20:56:39 UTC (rev 96641)
@@ -1,3 +1,15 @@
+2011-10-04  Gavin Peters  <gav...@chromium.org>
+
+        fix gtk breakage caused by changeset 96595
+        https://bugs.webkit.org/show_bug.cgi?id=69371
+
+        ews did not catch build breakage in the gtk WebKitPluginProcess target; this patch removes
+        the pretty printer on gtk, which should fix the build on that platform.
+
+        Reviewed by NOBODY, this is a build fix.
+
+        * wtf/Assertions.cpp:
+
 2011-10-04  Sheriff Bot  <webkit.review....@gmail.com>
 
         Unreviewed, rolling out r96630.

Modified: trunk/Source/_javascript_Core/wtf/Assertions.cpp (96640 => 96641)


--- trunk/Source/_javascript_Core/wtf/Assertions.cpp	2011-10-04 20:53:09 UTC (rev 96640)
+++ trunk/Source/_javascript_Core/wtf/Assertions.cpp	2011-10-04 20:56:39 UTC (rev 96641)
@@ -203,7 +203,7 @@
         const char* mangledName = 0;
         char* cxaDemangled = 0;
 
-#if !PLATFORM(QT) && (OS(DARWIN) || OS(LINUX))
+#if !PLATFORM(GTK) && !PLATFORM(QT) && (OS(DARWIN) || OS(LINUX))
         Dl_info info;
         if (dladdr(samples[i], &info) && info.dli_sname)
             mangledName = info.dli_sname;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to