diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:16:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:16:24 +0000 |
commit | 9221dca64f0c8b5de72727491e41cf63e902eaab (patch) | |
tree | d8cbbf520eb4b5c656a54b2e36947008dcb751ad /patches/fdutimens-hurd.patch | |
parent | Initial commit. (diff) | |
download | man-db-9221dca64f0c8b5de72727491e41cf63e902eaab.tar.xz man-db-9221dca64f0c8b5de72727491e41cf63e902eaab.zip |
Adding upstream version 2.8.5.upstream/2.8.5upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | patches/fdutimens-hurd.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/patches/fdutimens-hurd.patch b/patches/fdutimens-hurd.patch new file mode 100644 index 0000000..de0d683 --- /dev/null +++ b/patches/fdutimens-hurd.patch @@ -0,0 +1,37 @@ +commit 15ab8fc0974755c0b56554b6dc6f9dec65290b8c +Author: Colin Watson <cjwatson@debian.org> +Date: Wed Sep 24 13:09:50 2014 +0100 + + utimens: handle lack of UTIME_* on GNU/Hurd + + The Hurd has futimens, but does not currently support + UTIME_NOW/UTIME_OMIT (https://bugs.debian.org/762677). Resolve these to + real timestamps if necessary. + + Although the lutimens function is structured similarly, it does not need + the same change because the Hurd does not have utimensat, so it will + always fall back to other methods after calling update_timespec. + +diff --git a/gl/lib/utimens.c b/gl/lib/utimens.c +index dd3ec66..2d0e9f6 100644 +--- a/gl/lib/utimens.c ++++ b/gl/lib/utimens.c +@@ -243,6 +243,18 @@ fdutimens (int fd, char const *file, struct timespec const timespec[2]) + adjustment_needed++; + } + # endif ++# ifdef __GNU__ ++ /* Work around lack of UTIME_NOW/UTIME_OMIT support: ++ <https://bugs.debian.org/762677>. */ ++ if (adjustment_needed > 0) ++ { ++ if (fd < 0 ? stat (file, &st) : fstat (fd, &st)) ++ return -1; ++ update_timespec (&st, &ts); ++ /* Note that st is good, in case futimens gives ENOSYS. */ ++ adjustment_needed = 3; ++ } ++# endif + # if HAVE_UTIMENSAT + if (fd < 0) + { |