Title: [96690] trunk/Source/_javascript_Core
Revision
96690
Author
[email protected]
Date
2011-10-05 03:32:28 -0700 (Wed, 05 Oct 2011)

Log Message

Unreviewed WinCE build fix for r96595.

* wtf/Assertions.cpp:
RtlCaptureStackBackTrace() isn't available on WinCE.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (96689 => 96690)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-05 10:12:56 UTC (rev 96689)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-05 10:32:28 UTC (rev 96690)
@@ -1,3 +1,10 @@
+2011-10-05  Patrick Gansterer  <[email protected]>
+
+        Unreviewed WinCE build fix for r96595.
+
+        * wtf/Assertions.cpp:
+        RtlCaptureStackBackTrace() isn't available on WinCE.
+
 2011-10-04  Kent Tamura  <[email protected]>
 
         Introduce feature flags for incomplete input types

Modified: trunk/Source/_javascript_Core/wtf/Assertions.cpp (96689 => 96690)


--- trunk/Source/_javascript_Core/wtf/Assertions.cpp	2011-10-05 10:12:56 UTC (rev 96689)
+++ trunk/Source/_javascript_Core/wtf/Assertions.cpp	2011-10-05 10:32:28 UTC (rev 96690)
@@ -170,7 +170,7 @@
 {
 #if OS(DARWIN) || OS(LINUX)
     *size = backtrace(stack, *size);
-#elif OS(WINDOWS)
+#elif OS(WINDOWS) && !OS(WINCE)
     // The CaptureStackBackTrace function is available in XP, but it is not defined
     // in the Windows Server 2003 R2 Platform SDK. So, we'll grab the function
     // through GetProcAddress.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to