18 lines
391 B
Diff
18 lines
391 B
Diff
|
fix stat64 issue for modern macos versions (including macos arm64)
|
||
|
|
||
|
--- a/tools/rpcgen/rpc_main.c
|
||
|
+++ b/tools/rpcgen/rpc_main.c
|
||
|
@@ -62,6 +62,12 @@
|
||
|
#define EXTEND 1 /* alias for TRUE */
|
||
|
#define DONT_EXTEND 0 /* alias for FALSE */
|
||
|
|
||
|
+#ifdef __APPLE__
|
||
|
+# if __DARWIN_ONLY_64_BIT_INO_T
|
||
|
+# define stat64 stat
|
||
|
+# endif
|
||
|
+#endif
|
||
|
+
|
||
|
struct commandline
|
||
|
{
|
||
|
int cflag; /* xdr C routines */
|