[Mesa-dev] [PATCH] util/disk_cache: Use backward compatible st_mtime.
Timothy Arceri
tarceri at itsqueeze.com
Thu Feb 23 23:42:26 UTC 2017
Reviewed-by: Timothy Arceri <tarceri at itsqueeze.com>
On 24/02/17 09:29, Vinson Lee wrote:
> Fix Mac OS X build error.
>
> CC libmesautil_la-disk_cache.lo
> In file included from disk_cache.c:46:
> ./disk_cache.h:57:20: error: no member named 'st_mtim' in 'struct stat'
> *timestamp = st.st_mtim.tv_sec;
> ~~ ^
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99918
> Fixes: 207e3a6e4b ("util/radv: move *_get_function_timestamp() to utils")
> Signed-off-by: Vinson Lee <vlee at freedesktop.org>
> ---
> src/util/disk_cache.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/util/disk_cache.h b/src/util/disk_cache.h
> index 7f4da809cc..b7c0df25dd 100644
> --- a/src/util/disk_cache.h
> +++ b/src/util/disk_cache.h
> @@ -54,7 +54,7 @@ disk_cache_get_function_timestamp(void *ptr, uint32_t* timestamp)
> if (stat(info.dli_fname, &st)) {
> return false;
> }
> - *timestamp = st.st_mtim.tv_sec;
> + *timestamp = st.st_mtime;
> return true;
> #else
> return false;
>
More information about the mesa-dev
mailing list