Title: [249738] trunk/Tools
Revision
249738
Author
krol...@apple.com
Date
2019-09-10 15:48:29 -0700 (Tue, 10 Sep 2019)

Log Message

Remove SSL-based TLSDeprecation.mm contents
https://bugs.webkit.org/show_bug.cgi?id=201657
<rdar://problem/55237678>

Reviewed by Alex Christensen.

This file does not build on watchOS due to references to SSL
facilities. Conditionalize out the contents on HAVE_SSL.

* TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (249737 => 249738)


--- trunk/Tools/ChangeLog	2019-09-10 22:28:32 UTC (rev 249737)
+++ trunk/Tools/ChangeLog	2019-09-10 22:48:29 UTC (rev 249738)
@@ -1,3 +1,16 @@
+2019-09-10  Keith Rollin  <krol...@apple.com>
+
+        Remove SSL-based TLSDeprecation.mm contents
+        https://bugs.webkit.org/show_bug.cgi?id=201657
+        <rdar://problem/55237678>
+
+        Reviewed by Alex Christensen.
+
+        This file does not build on watchOS due to references to SSL
+        facilities. Conditionalize out the contents on HAVE_SSL.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
+
 2019-09-10  Michael Catanzaro  <mcatanz...@igalia.com>
 
         Unreviewed, remove myself from watchlists

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm (249737 => 249738)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm	2019-09-10 22:28:32 UTC (rev 249737)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm	2019-09-10 22:48:29 UTC (rev 249738)
@@ -25,6 +25,8 @@
 
 #include "config.h"
 
+#if HAVE(SSL)
+
 #import "PlatformUtilities.h"
 #import "TCPServer.h"
 #import "TestNavigationDelegate.h"
@@ -205,3 +207,5 @@
 }
 
 }
+
+#endif // HAVE(SSL)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to