Markus Mützel
Markus Mützel
Doesn't hang on exit with CLANG64.
That might be an issue with mesa's build system. Somehow it determined to link with regex. But omitted its dependencies. Fwiw, `pkg-config` returns (most of) those flags correctly for me:...
I'm not very familiar with meson syntax. Does `meson.get_compiler('c').find_library('regex', required : false)` query pkg-config? Edit: Maybe it should use `dependency` instead of `find_library`: https://mesonbuild.com/Dependencies.html
Afaict, it's actually `gettext` (not directly `libtre`) that is pulling in the `iconv` dependency on platforms without `glibc` (that includes Windows). However, `gettext` might be getting pulled in by `libtre`......
It looks like someone posted a patch that adds a pkg-config file to gettext's mailing list a few years ago: https://lists.gnu.org/archive/html/bug-gettext/2019-10/msg00003.html But I can't find any follow up...
IIUC, these aren't direct dependencies of Mesa. But they are pulled in via the pkg-config file of `regex`. So, adding dependency rules for `intl` and `iconv` unconditionally might lead to...
Maybe try adding `fflush(stdout);` every time before calling `scanf` to tell the terminal that the output buffer should be flushed. Otherwise, the behavior of your example is implementation dependent (iiuc).
> Threre is no readily available date variable afaik. You could maybe use `date +%Y-%m-%d` (or `$(date +%Y-%m-%d)` inside a shell script) to construct the date when the package was...
Is it necessary to build packages with different versions of wxWidgets? IIUC, it is kind of a development toolbox that projects can use for their GUI. Does having the option...
Sorry, I didn't understand your response (and wasn't aware that there were people "bad mouthing the package"). Just to help me (and maybe others) understand: What are the "standard directions"?...