Re: [webkit-dev] Request for position: WEBRTC-SVC

2021-10-19 Thread youenn fablet via webkit-dev
Le mar. 19 oct. 2021 à 00:24, Harald Alvestrand via webkit-dev < webkit-dev@lists.webkit.org> a écrit : > Chrome is considering releasing an implementation of the WEBRTC-SVC API. > API documentation: https://w3c.github.io/webrtc-svc/ > > This has been available in Chrome behind a flag for some

[webkit-dev] Updating iOS EWS

2021-10-19 Thread Matt Lewis via webkit-dev
We are currently updating all embedded EWS hosts to iOS15 aligned releases. Expect delays and offline hosts. We appreciate your patience. Matt Lewis ___ webkit-dev mailing list webkit-dev@lists.webkit.org

[webkit-dev] -Wreturn-type and -Wredundant-move reminders

2021-10-19 Thread Michael Catanzaro via webkit-dev
Hi devs, A reminder about this common idiom: switch (...) { case Foo: return ...; case Bar: return ...; } RELEASE_ASSERT_NOT_REACHED(); When it's intended that the code always returns inside the switch statement, the RELEASE_ASSERT_NOT_REACHED() is required to avoid tripping GCC's

Re: [webkit-dev] -Wreturn-type and -Wredundant-move reminders

2021-10-19 Thread Ryosuke Niwa via webkit-dev
On Tue, Oct 19, 2021 at 1:15 PM Michael Catanzaro via webkit-dev < webkit-dev@lists.webkit.org> wrote: > A reminder about this common idiom: > > switch (...) { > case Foo: > return ...; > case Bar: > return ...; > } > RELEASE_ASSERT_NOT_REACHED(); > > When it's intended that the code

Re: [webkit-dev] -Wreturn-type and -Wredundant-move reminders

2021-10-19 Thread Michael Catanzaro via webkit-dev
On Tue, Oct 19 2021 at 01:43:19 PM -0700, Ryosuke Niwa wrote: Can we add a style checker rule to detect at least simple cases? I think detecting this pattern without false positives would be pretty tough. Requires too much knowledge of the semantics of the code. Michael

[webkit-dev] Proposal to enable logging under non-systemd linux distros

2021-10-19 Thread Pablo Correa Gomez via webkit-dev
Dear webkit maintainers, I am a contributor to postmarketos/alpine linux. We recently bumped into some runtime crashes in webkit2gtk which were very hard to debug due to the lack of logging. The reason for the lack of logging seems to be that alpine configures webkit2gtk with -DPORT=GTK

Re: [webkit-dev] Proposal to enable logging under non-systemd linux distros

2021-10-19 Thread Michael Catanzaro via webkit-dev
On Wed, Oct 20 2021 at 02:07:56 AM +0200, Pablo Correa Gomez via webkit-dev wrote: - Rename USE_SYSTEMD to USE_JOURNALD and have a conditional check which looks for elogind if libsystemd is not found, similar to the hack I used for proof-testing. This one! Do this one! We don't need two