Title: [175283] trunk/Source/WebCore
Revision
175283
Author
[email protected]
Date
2014-10-28 16:50:36 -0700 (Tue, 28 Oct 2014)

Log Message

All networking crashes on Mac 32bit
https://bugs.webkit.org/show_bug.cgi?id=138157

Reviewed by Andy Estes.

NEFilterSource content filtering is not available on 32bit, so
soft-linking fails at runtime. The simplest solution is just to disable
it at compile time.

* platform/ContentFilter.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175282 => 175283)


--- trunk/Source/WebCore/ChangeLog	2014-10-28 23:49:39 UTC (rev 175282)
+++ trunk/Source/WebCore/ChangeLog	2014-10-28 23:50:36 UTC (rev 175283)
@@ -1,3 +1,16 @@
+2014-10-28  Geoffrey Garen  <[email protected]>
+
+        All networking crashes on Mac 32bit
+        https://bugs.webkit.org/show_bug.cgi?id=138157
+
+        Reviewed by Andy Estes.
+
+        NEFilterSource content filtering is not available on 32bit, so
+        soft-linking fails at runtime. The simplest solution is just to disable
+        it at compile time.
+
+        * platform/ContentFilter.h:
+
 2014-10-28  Jeremy Jones  <[email protected]>
 
         Add optimized fullscreen mode.

Modified: trunk/Source/WebCore/platform/ContentFilter.h (175282 => 175283)


--- trunk/Source/WebCore/platform/ContentFilter.h	2014-10-28 23:49:39 UTC (rev 175282)
+++ trunk/Source/WebCore/platform/ContentFilter.h	2014-10-28 23:50:36 UTC (rev 175283)
@@ -42,7 +42,7 @@
 OBJC_CLASS WebFilterEvaluator;
 #endif
 
-#define HAVE_NE_FILTER_SOURCE TARGET_OS_EMBEDDED || (!TARGET_OS_IPHONE && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
+#define HAVE_NE_FILTER_SOURCE TARGET_OS_EMBEDDED || (!TARGET_OS_IPHONE && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000 && CPU(X86_64))
 
 #if HAVE(NE_FILTER_SOURCE)
 #import <dispatch/dispatch.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to