⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 287718 in webkit


Ignore:
Timestamp:
Jan 6, 2022, 3:00:36 PM (5 years ago)
Author:
stephan.szabo@sony.com
Message:

[PlayStation] Fix build break after r287698
https://bugs.webkit.org/show_bug.cgi?id=234931

Unreviewed build fix

.:

  • Source/cmake/OptionsPlayStation.cmake: Workaround for not having u8string for gtest.

Source/WTF:

  • wtf/PlatformHave.h: Use MISSING_STD_FILESYSTEM_PATH_CONSTRUCTOR on PlayStation
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r287716 r287718  
     12022-01-06  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [PlayStation] Fix build break after r287698
     4        https://bugs.webkit.org/show_bug.cgi?id=234931
     5
     6        Unreviewed build fix
     7
     8        * Source/cmake/OptionsPlayStation.cmake: Workaround for not having u8string for gtest.
     9
    1102022-01-06  Fujii Hironori  <Hironori.Fujii@sony.com>
    211
  • trunk/Source/WTF/ChangeLog

    r287698 r287718  
     12022-01-06  Stephan Szabo  <stephan.szabo@sony.com>
     2
     3        [PlayStation] Fix build break after r287698
     4        https://bugs.webkit.org/show_bug.cgi?id=234931
     5
     6        Unreviewed build fix
     7
     8        * wtf/PlatformHave.h: Use MISSING_STD_FILESYSTEM_PATH_CONSTRUCTOR on PlayStation
     9
    1102022-01-06  Alex Christensen  <achristensen@webkit.org>
    211
  • trunk/Source/WTF/wtf/PlatformHave.h

    r287698 r287718  
    116116#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 120000
    117117#define HAVE_MISSING_STD_FILESYSTEM_PATH_CONSTRUCTOR 1
     118#elif PLATFORM(PLAYSTATION)
     119#define HAVE_MISSING_STD_FILESYSTEM_PATH_CONSTRUCTOR 1
    118120#elif COMPILER(GCC)
    119121#if !GCC_VERSION_AT_LEAST(9, 0, 0)
  • trunk/Source/cmake/OptionsPlayStation.cmake

    r286204 r287718  
    300300    add_definitions(-DHAVE_MEMMEM=1)
    301301endif ()
     302
     303# FIXME: gtest assumes that you will have u8string if __cpp_char8_t
     304# (feature test macro) is defined.
     305add_compile_options(-U__cpp_char8_t)
Note: See TracChangeset for help on using the changeset viewer.