Changeset 244366 in webkit


Ignore:
Timestamp:
Apr 16, 2019 6:27:21 PM (5 years ago)
Author:
stephan.szabo@sony.com
Message:

[PlayStation] Update port for system library changes
https://bugs.webkit.org/show_bug.cgi?id=196978

Reviewed by Ross Kirsling.

Source/JavaScriptCore:

  • shell/playstation/Initializer.cpp:

Add reference to new posix compatibility library.

Source/WTF:

  • wtf/PlatformPlayStation.cmake:

Remove reference to deleted system library

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r244352 r244366  
     12019-04-16  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [PlayStation] Update port for system library changes
     4        https://bugs.webkit.org/show_bug.cgi?id=196978
     5
     6        Reviewed by Ross Kirsling.
     7
     8        * shell/playstation/Initializer.cpp:
     9        Add reference to new posix compatibility library.
     10
    1112019-04-16  Robin Morisset  <rmorisset@apple.com>
    212
  • trunk/Source/JavaScriptCore/shell/playstation/Initializer.cpp

    r243700 r244366  
    3939    if (!handle)
    4040        exit(1);
     41    handle = dlopen("PosixWebKit", RTLD_NOW);
     42    if (!handle)
     43        exit(1);
    4144    handle = dlopen("libJavaScriptCore", RTLD_NOW);
    4245    if (!handle)
  • trunk/Source/WTF/ChangeLog

    r244362 r244366  
     12019-04-16  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [PlayStation] Update port for system library changes
     4        https://bugs.webkit.org/show_bug.cgi?id=196978
     5
     6        Reviewed by Ross Kirsling.
     7
     8        * wtf/PlatformPlayStation.cmake:
     9        Remove reference to deleted system library
     10
    1112019-04-16  Jer Noble  <jer.noble@apple.com>
    212
  • trunk/Source/WTF/wtf/PlatformPlayStation.cmake

    r241654 r244366  
    2222    ${C_STD_LIBRARY}
    2323    ${KERNEL_LIBRARY}
    24     ${POSIX_COMPATABILITY_LIBRARY}
    2524)
Note: See TracChangeset for help on using the changeset viewer.