From: Helmut Grohne Date: Fri, 7 Aug 2020 18:47:29 +0000 (+0100) Subject: Fix ftbfs on alpha, see #962676 X-Git-Tag: archive/raspbian/1.4.5+dfsg-4+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dc044406461c8f944b73129fbd5280bf116cfee1;p=libzstd.git Fix ftbfs on alpha, see #962676 Gbp-Pq: Name 0017-alpha-fbfs-st_mtime.patch --- diff --git a/programs/util.c b/programs/util.c index ab1abd3..1549356 100644 --- a/programs/util.c +++ b/programs/util.c @@ -148,8 +148,10 @@ int UTIL_setFileStat(const char *filename, 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} };