mirror of
https://github.com/openwrt/packages.git
synced 2025-02-14 14:58:03 +00:00
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>
18 lines
323 B
Diff
18 lines
323 B
Diff
fix stat64 issue for modern macos versions (including macos arm64)
|
|
|
|
--- a/tools/rpcgen/rpc_main.c
|
|
+++ b/tools/rpcgen/rpc_main.c
|
|
@@ -68,6 +68,12 @@
|
|
# endif
|
|
#endif
|
|
|
|
+#ifdef __APPLE__
|
|
+# if __DARWIN_ONLY_64_BIT_INO_T
|
|
+# define stat64 stat
|
|
+# endif
|
|
+#endif
|
|
+
|
|
struct commandline
|
|
{
|
|
int cflag; /* xdr C routines */
|