There is a new pull request by r-ricci against master on the void-packages repository https://github.com/r-ricci/void-packages imv-assert https://github.com/void-linux/void-packages/pull/42865 imv: configure with -Db_ndebug=false `WAYLAND_DISPLAY= imv-wayland` and `DISPLAY= imv-x11` segfault because assertions are used to check for errors in these cases and we build with `-Db_ndebug=true` by default. By looking at the commit history, I see that similar problems occurred in the past for other meson projects. Meson, unlike cmake, doesn't define NDEBUG by default for release build types, so it's possible that many meson projects rely on assertions being always enabled. I don't believe it's safe to have `-Db_ndebug=true` in our build style. #### Testing the changes - I tested the changes in this PR: **YES** A patch file from https://github.com/void-linux/void-packages/pull/42865.patch is attached