mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-23 01:21:46 +01:00
When there is no statx function, but the statx syscall is detected, boost-filesystem implements a statx function that directly calls the syscall. This is broken, because statx might not be implemented on the running system, and there is no logic to fall back to fstatat. Remove the build-time detection of the statx syscall, so that the code falls back to `stat`. Fixes #12349