Results 7 issues of Peter Korsgaard

meson.build has the following logic: ``` if not meson.is_subproject() git = find_program('git', required: false) if git.found() run_command(git, 'config', '--local', 'core.hooksPath', meson.source_root()/'.hooks', check: false) endif endif ``` Which isn't great when...

arc4random(3) is problematic to use during early boot, as it (as implemented by glibc or libbsd) uses getrandom(2) without the GRND_NONBLOCK flag, causing it to block until the kernel entropy...

Bootgen embeds an old version of flex, but uses the system include syntax (#include ) to reference it, causing conflicts on systems with the development headers for a modern flex...

Bootgen embeds an old version of flex, but uses the system include syntax (#include ) to reference it, causing conflicts on systems with the development headers for a modern flex...

Xruns can happen quite often (E.G. continuously when using alsaloop to/from the UAC gadget driver without a connected host), so only log the debug messages when verbose logging has been...

First of all, thanks for purelymail! I am located in Europe, and the IMAP performance is quite sluggish, so I recently changed to mbsync so I can access my mail...

As explained in https://github.com/json-c/json-c/pull/832, getrandom(.., GRND_NONBLOCK) fails with EAGAIN if the Linux kernel random number pool is not yet initialized. The use case here is initializing the hash table seed...