You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
391 B

  1. fix stat64 issue for modern macos versions (including macos arm64)
  2. --- a/tools/rpcgen/rpc_main.c
  3. +++ b/tools/rpcgen/rpc_main.c
  4. @@ -62,6 +62,12 @@
  5. #define EXTEND 1 /* alias for TRUE */
  6. #define DONT_EXTEND 0 /* alias for FALSE */
  7. +#ifdef __APPLE__
  8. +# if __DARWIN_ONLY_64_BIT_INO_T
  9. +# define stat64 stat
  10. +# endif
  11. +#endif
  12. +
  13. struct commandline
  14. {
  15. int cflag; /* xdr C routines */