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.

37 lines
1.8 KiB

  1. From 567815df38a2ff54ad7478a90bd75c91e434236a Mon Sep 17 00:00:00 2001
  2. From: makepost <makepost@firemail.cc>
  3. Date: Mon, 24 Dec 2018 03:13:16 +0200
  4. Subject: [PATCH] Use st_mtim if st_mtime is macro, fix #1510
  5. In POSIX.1-2008, sys_stat has a st_mtim member and a st_mtime backward
  6. compatibility macro. Should help avoid hardcoding platform detection.
  7. ---
  8. src/disk_interface.cc | 14 ++++----------
  9. 1 file changed, 4 insertions(+), 10 deletions(-)
  10. --- a/src/disk_interface.cc
  11. +++ b/src/disk_interface.cc
  12. @@ -202,19 +202,13 @@ TimeStamp RealDiskInterface::Stat(const
  13. // that it doesn't exist.
  14. if (st.st_mtime == 0)
  15. return 1;
  16. -#if defined(__APPLE__) && !defined(_POSIX_C_SOURCE)
  17. +#if defined(_AIX)
  18. + return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n;
  19. +#elif defined(__APPLE__)
  20. return ((int64_t)st.st_mtimespec.tv_sec * 1000000000LL +
  21. st.st_mtimespec.tv_nsec);
  22. -#elif (_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700 || defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \
  23. - defined(__BIONIC__) || (defined (__SVR4) && defined (__sun)) || defined(__FreeBSD__))
  24. - // For glibc, see "Timestamp files" in the Notes of http://www.kernel.org/doc/man-pages/online/pages/man2/stat.2.html
  25. - // newlib, uClibc and musl follow the kernel (or Cygwin) headers and define the right macro values above.
  26. - // For bsd, see https://github.com/freebsd/freebsd/blob/master/sys/sys/stat.h and similar
  27. - // For bionic, C and POSIX API is always enabled.
  28. - // For solaris, see https://docs.oracle.com/cd/E88353_01/html/E37841/stat-2.html.
  29. +#elif defined(st_mtime) // A macro, so we're likely on modern POSIX.
  30. return (int64_t)st.st_mtim.tv_sec * 1000000000LL + st.st_mtim.tv_nsec;
  31. -#elif defined(_AIX)
  32. - return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n;
  33. #else
  34. return (int64_t)st.st_mtime * 1000000000LL + st.st_mtimensec;
  35. #endif