diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-29 23:48:10 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-10-21 18:34:01 -0500 |
commit | ad5db52dcda860a0d94290a4195a894f50403231 (patch) | |
tree | 0330b6aa516bd65b711520b986bd043b3f5f30e9 /user/mesa/time64.patch | |
parent | 823f7c73c8d6f12d66e0d4bb5c5c197d7409c5b3 (diff) | |
download | packages-ad5db52dcda860a0d94290a4195a894f50403231.tar.gz packages-ad5db52dcda860a0d94290a4195a894f50403231.tar.bz2 packages-ad5db52dcda860a0d94290a4195a894f50403231.tar.xz packages-ad5db52dcda860a0d94290a4195a894f50403231.zip |
user/mesa: Update to 20.3.5
Run-tested on PPC64. Intermediate step for full update.
Diffstat (limited to 'user/mesa/time64.patch')
-rw-r--r-- | user/mesa/time64.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/user/mesa/time64.patch b/user/mesa/time64.patch deleted file mode 100644 index 7e7894a9d..000000000 --- a/user/mesa/time64.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- mesa-19.3.1/src/gallium/drivers/vc4/vc4_bufmgr.c.old 2019-12-18 18:36:00.000000000 +0000 -+++ mesa-19.3.1/src/gallium/drivers/vc4/vc4_bufmgr.c 2020-01-20 19:26:36.470000000 +0000 -@@ -107,8 +107,8 @@ - - struct timespec time; - clock_gettime(CLOCK_MONOTONIC, &time); -- fprintf(stderr, " now: %ld\n", -- time.tv_sec); -+ fprintf(stderr, " now: %"PRId64"\n", -+ (int64_t)time.tv_sec); - } - } - ---- mesa-19.3.1/src/gallium/drivers/v3d/v3d_bufmgr.c.old 2019-12-18 18:36:00.000000000 +0000 -+++ mesa-19.3.1/src/gallium/drivers/v3d/v3d_bufmgr.c 2020-01-20 19:28:02.600000000 +0000 -@@ -23,6 +23,7 @@ - - #include <errno.h> - #include <err.h> -+#include <inttypes.h> - #include <sys/mman.h> - #include <fcntl.h> - #include <xf86drm.h> -@@ -80,8 +81,8 @@ - - struct timespec time; - clock_gettime(CLOCK_MONOTONIC, &time); -- fprintf(stderr, " now: %ld\n", -- time.tv_sec); -+ fprintf(stderr, " now: %"PRId64"\n", -+ (int64_t)time.tv_sec); - } - } - |