[Webkit-unassigned] [Bug 209431] [GTK] [2.28.0] The Yelp build crashes if DISPLAY is not set

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 27 00:27:21 PDT 2020


https://bugs.webkit.org/show_bug.cgi?id=209431

--- Comment #7 from Carlos Garcia Campos <cgarcia at igalia.com> ---
I don't think we should create a PlatformDisplayLibWPE as fallback. We could fix it in PlatformDisplay::createPlatformDisplay()

either:

#if USE(WPE_RENDERER) -> #if USE(LIBWPE)

or just move the block:

#if USE(WPE_RENDERER)
    return PlatformDisplayLibWPE::create();
#elif PLATFORM(WIN)
    return PlatformDisplayWin::create();
#endif

at the end of the function, right before the RELEASE_ASSERT_NOT_REACHED()

Could you try any of these solutions, please?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200427/98ad1dbb/attachment.htm>


More information about the webkit-unassigned mailing list