Title: [197992] trunk/Source/WebCore
Revision
197992
Author
ddkil...@apple.com
Date
2016-03-10 21:01:06 -0800 (Thu, 10 Mar 2016)

Log Message

REGRESSION (r197976): Build failure due to missing DDOptionalSource.h header

Follow-up fix for:
    Expose additional WKDataDetectorTypes.
    <https://bugs.webkit.org/show_bug.cgi?id=155331>

* platform/spi/cocoa/DataDetectorsCoreSPI.h: Protect
DDOptionalSource.h with version check.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197991 => 197992)


--- trunk/Source/WebCore/ChangeLog	2016-03-11 04:52:21 UTC (rev 197991)
+++ trunk/Source/WebCore/ChangeLog	2016-03-11 05:01:06 UTC (rev 197992)
@@ -1,3 +1,14 @@
+2016-03-10  David Kilzer  <ddkil...@apple.com>
+
+        REGRESSION (r197976): Build failure due to missing DDOptionalSource.h header
+
+        Follow-up fix for:
+            Expose additional WKDataDetectorTypes.
+            <https://bugs.webkit.org/show_bug.cgi?id=155331>
+
+        * platform/spi/cocoa/DataDetectorsCoreSPI.h: Protect
+        DDOptionalSource.h with version check.
+
 2016-03-10  Alex Christensen  <achristen...@webkit.org>
 
         Fix Windows build after r197986.

Modified: trunk/Source/WebCore/platform/spi/cocoa/DataDetectorsCoreSPI.h (197991 => 197992)


--- trunk/Source/WebCore/platform/spi/cocoa/DataDetectorsCoreSPI.h	2016-03-11 04:52:21 UTC (rev 197991)
+++ trunk/Source/WebCore/platform/spi/cocoa/DataDetectorsCoreSPI.h	2016-03-11 05:01:06 UTC (rev 197992)
@@ -32,7 +32,9 @@
 #import <DataDetectorsCore/DDScannerResult.h>
 #import <DataDetectorsCore/DataDetectorsCore.h>
 #if PLATFORM(IOS)
+#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 100000
 #import <DataDetectorsCore/DDOptionalSource.h>
+#endif
 #import <DataDetectorsCore/DDURLifier.h>
 #endif
 #else // !USE(APPLE_INTERNAL_SDK)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to