WebKit Bugzilla
Attachment 368728 Details for
Bug 197483
: [PlayStation] Update port for WEBKIT_EXECUTABLE changes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
197483.1.diff (text/plain), 1.71 KB, created by
Stephan Szabo
on 2019-05-01 16:08:25 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Stephan Szabo
Created:
2019-05-01 16:08:25 PDT
Size:
1.71 KB
patch
obsolete
>diff --git a/ChangeLog b/ChangeLog >index eb2d7340037..5e3e3637fd4 100644 >--- a/ChangeLog >+++ b/ChangeLog >@@ -1,3 +1,14 @@ >+2019-05-01 Stephan Szabo <stephan.szabo@sony.com> >+ >+ [PlayStation] Update port for WEBKIT_EXECUTABLE changes >+ https://bugs.webkit.org/show_bug.cgi?id=197483 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Source/cmake/OptionsPlayStation.cmake: >+ Update wrapping for configuring executables' playstation >+ specific data to new WEBKIT_EXECUTABLE macro. >+ > 2019-04-30 Carlos Garcia Campos <cgarcia@igalia.com> > > [GTK] Support prefers-color-scheme media query >diff --git a/Source/cmake/OptionsPlayStation.cmake b/Source/cmake/OptionsPlayStation.cmake >index 161f7afc1ea..6be35a7001b 100644 >--- a/Source/cmake/OptionsPlayStation.cmake >+++ b/Source/cmake/OptionsPlayStation.cmake >@@ -150,16 +150,16 @@ function(add_library target type) > endif () > endfunction() > >-function(add_executable target) >- _add_executable(${ARGV}) >- playstation_setup_libc(${target}) >- playstation_setup_fp(${target}) >- if (NOT ${target} MATCHES "^LLInt") >- sign(${target}) >+macro(WEBKIT_EXECUTABLE _target) >+ _WEBKIT_EXECUTABLE(${_target}) >+ playstation_setup_libc(${_target}) >+ playstation_setup_fp(${_target}) >+ if (NOT ${_target} MATCHES "^LLInt") >+ sign(${_target}) > endif () >- if (PLAYSTATION_${target}_WRAP) >- foreach (WRAP ${PLAYSTATION_${target}_WRAP}) >- target_link_options(${target} PRIVATE -Wl,--wrap=${WRAP}) >+ if (PLAYSTATION_${_target}_WRAP) >+ foreach (WRAP ${PLAYSTATION_${_target}_WRAP}) >+ target_link_options(${_target} PRIVATE -Wl,--wrap=${WRAP}) > endforeach () > endif () >-endfunction() >+endmacro()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197483
: 368728