Changeset 249738 in webkit


Ignore:
Timestamp:
Sep 10, 2019 3:48:29 PM (5 years ago)
Author:
Keith Rollin
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249711 r249738  
     12019-09-10  Keith Rollin  <krollin@apple.com>
     2
     3        Remove SSL-based TLSDeprecation.mm contents
     4        https://bugs.webkit.org/show_bug.cgi?id=201657
     5        <rdar://problem/55237678>
     6
     7        Reviewed by Alex Christensen.
     8
     9        This file does not build on watchOS due to references to SSL
     10        facilities. Conditionalize out the contents on HAVE_SSL.
     11
     12        * TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
     13
    1142019-09-10  Michael Catanzaro  <mcatanzaro@igalia.com>
    215
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm

    r249704 r249738  
    2525
    2626#include "config.h"
     27
     28#if HAVE(SSL)
    2729
    2830#import "PlatformUtilities.h"
     
    206208
    207209}
     210
     211#endif // HAVE(SSL)
Note: See TracChangeset for help on using the changeset viewer.