Title: [186720] trunk/Source/WTF
Revision
186720
Author
[email protected]
Date
2015-07-11 18:54:01 -0700 (Sat, 11 Jul 2015)

Log Message

Unreviewed build fix, restrict APP_LINKS to just iOS.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (186719 => 186720)


--- trunk/Source/WTF/ChangeLog	2015-07-11 22:58:13 UTC (rev 186719)
+++ trunk/Source/WTF/ChangeLog	2015-07-12 01:54:01 UTC (rev 186720)
@@ -1,3 +1,9 @@
+2015-07-11  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed build fix, restrict APP_LINKS to just iOS.
+
+        * wtf/Platform.h:
+
 2015-07-09  Tim Horton  <[email protected]>
 
         Use CoreAnimation fences instead of synchronous IPC to synchronize resize

Modified: trunk/Source/WTF/wtf/Platform.h (186719 => 186720)


--- trunk/Source/WTF/wtf/Platform.h	2015-07-11 22:58:13 UTC (rev 186719)
+++ trunk/Source/WTF/wtf/Platform.h	2015-07-12 01:54:01 UTC (rev 186720)
@@ -555,7 +555,7 @@
 #define USE_WEB_THREAD 1
 #define USE_QUICK_LOOK 1
 
-#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 90000
+#if defined(TARGET_OS_IOS) && TARGET_OS_IOS && __IPHONE_OS_VERSION_MIN_REQUIRED >= 90000
 #define HAVE_APP_LINKS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to