WebKit Bugzilla
Attachment 339133 Details for
Bug 185140
: WebProcess fails to launch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185140-20180430115952.patch (text/plain), 1.74 KB, created by
Per Arne Vollan
on 2018-04-30 11:59:52 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Per Arne Vollan
Created:
2018-04-30 11:59:52 PDT
Size:
1.74 KB
patch
obsolete
>Index: Source/WebKit/ChangeLog >=================================================================== >--- Source/WebKit/ChangeLog (revision 231160) >+++ Source/WebKit/ChangeLog (working copy) >@@ -1,3 +1,15 @@ >+2018-04-30 Per Arne Vollan <pvollan@apple.com> >+ >+ Use correct runloop type in the WebContent process. >+ https://bugs.webkit.org/show_bug.cgi?id=185140 >+ <rdar://problem/39585037> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ The macOS target version should be used to determine the runloop type. >+ >+ * Configurations/WebContentService.xcconfig: >+ > 2018-04-30 Andy Estes <aestes@apple.com> > > [iOS] Try to unlock PDF documents before printing them >Index: Source/WebKit/Configurations/WebContentService.xcconfig >=================================================================== >--- Source/WebKit/Configurations/WebContentService.xcconfig (revision 231160) >+++ Source/WebKit/Configurations/WebContentService.xcconfig (working copy) >@@ -61,7 +61,9 @@ WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FR > WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_NO = $(WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG); > WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG_YES = $(USE_STAGING_INSTALL_PATH); > >-RUNLOOP_TYPE[sdk=macosx*] = NSRunLoop; >-RUNLOOP_TYPE[sdk=macosx10.13*] = _NSApplicationMain; >-RUNLOOP_TYPE[sdk=macosx10.12*] = _NSApplicationMain; >-RUNLOOP_TYPE[sdk=macosx10.11*] = _NSApplicationMain; >+RUNLOOP_TYPE = $(RUNLOOP_TYPE_$(PLATFORM_NAME)_$(TARGET_MAC_OS_X_VERSION_MAJOR)); >+RUNLOOP_TYPE_macosx_101100 = _NSApplicationMain; >+RUNLOOP_TYPE_macosx_101200 = _NSApplicationMain; >+RUNLOOP_TYPE_macosx_101300 = _NSApplicationMain; >+RUNLOOP_TYPE_macosx_101400 = NSRunLoop; >+RUNLOOP_TYPE_macosx_101500 = NSRunLoop;
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 185140
:
339133
|
339204
|
339213
|
340727