aboutsummaryrefslogtreecommitdiff
path: root/net/nfs-kernel-server/patches/200-fix-macos-build.patch
Commit message (Collapse)AuthorAge
* nfs-kernel-server: update to v2.6.2Oskari Rauta2023-03-01
| | | | | | | | Also added patch that is from alpine's same package to assist building on musl. Hostpkg build on musl also kept failing, so I added few more overrides, which made it work perfectly. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* nfs-kernel-server: fix build on macos arm64Sergey V. Lobanov2021-12-13
1. prctl() check is not required for host-compile on any OS due to prctl is not used in rpcgen which is only one is compiled during host-compile phase. prctl() check is disabled via HOST_CONFIGURE_VARS in OpenWrt makefile 2. __DARWIN_ONLY_64_BIT_INO_T is true on macos arm64 so struct stat64 and stat64() are not available. This patch defines stat64 as stat if __DARWIN_ONLY_64_BIT_INO_T is true Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>