You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI- there's a patch to add FNM_EXTMATCH to musl here though I can't (yet) comment on whether it resolves your issue (I'm actually applying it for the purpose of building libelf, not vala)
Just defining FNM_EXTMATCH to 0 will make it compile but it will not make the extended pattern matches work.
The code does:
ignore_pattern_list += ("|"+ pattern);
As I read that, it means that they try to match files with extended fnmatch doing file1|file2|file3. That needs to be refactored if this is supposed to work on POSIX and not only GNU.
Alternatively clearly document that nothing but GNU is supported (so we can delete the package from alpine).
Build fails on alpine linux (edge):
FNM_EXTMATCH
seems to be a GNU extension.Introduced in 923adb5
The text was updated successfully, but these errors were encountered: