Fix ftbfs on alpha, see #962676
authorHelmut Grohne <helmut@subdivi.de>
Mon, 1 Mar 2021 17:23:52 +0000 (17:23 +0000)
committerStephen Kitt <skitt@debian.org>
Mon, 1 Mar 2021 17:23:52 +0000 (17:23 +0000)
Gbp-Pq: Name 0017-alpha-fbfs-st_mtime.patch

programs/util.c

index 5386d005c26c6e812f29ab756f3474b94410c2a5..8bcfe47e54b623c98b9979c42ec1949aeb51d97b 100644 (file)
@@ -171,8 +171,10 @@ int UTIL_setFileStat(const char *filename, const stat_t *statbuf)
     /* We check that st_mtime is a macro here in order to give us confidence
      * that struct stat has a struct timespec st_mtim member. We need this
      * check because there are some platforms that claim to be POSIX 2008
-     * compliant but which do not have st_mtim... */
-#if (PLATFORM_POSIX_VERSION >= 200809L) && defined(st_mtime)
+     * compliant but which do not have st_mtim...
+     * And then there is alpha, which doesn't define st_mtime, but still has it.
+     */
+#if (PLATFORM_POSIX_VERSION >= 200809L) && (defined(st_mtime) || defined(__alpha__))
     {
         /* (atime, mtime) */
         struct timespec timebuf[2] = { {0, UTIME_NOW} };