<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Origin: Void Linux

--- a/src/gallium/frontends/nine/threadpool.h	2015-05-07 14:10:53.443337212 +0200
+++ b/src/gallium/frontends/nine/threadpool.h	2015-05-07 14:11:04.210307653 +0200
@@ -24,6 +24,8 @@
 #ifndef _THREADPOOL_H_
 #define _THREADPOOL_H_
 
+#include &lt;pthread.h&gt;
+
 #define MAXTHREADS 1
 
 struct threadpool {
--- a/src/util/rand_xor.c	2020-10-03 12:27:48.489024729 +0200
+++ b/src/util/rand_xor.c	2020-10-03 12:31:05.927113521 +0200
@@ -28,6 +28,7 @@
 #if defined(HAVE_GETRANDOM)
 #include &lt;sys/random.h&gt;
 #endif
+#include &lt;sys/types.h&gt;		/* size_t, ssize_t */
 #include &lt;unistd.h&gt;
 #include &lt;fcntl.h&gt;
 #endif
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
@@ -30,6 +30,7 @@
 
 #include &lt;amdgpu.h&gt;
 #include &lt;pthread.h&gt;
+#include &lt;sys/types.h&gt;
 #include "util/list.h"
 #include "util/rwlock.h"
 #include "ac_gpu_info.h"
--- a/src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:46:48.278918421 +0100
+++ b/src/gallium/frontends/nine/nine_debug.c	2020-03-06 07:51:32.919964119 +0100
@@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
 {
     static boolean first = TRUE;
     static unsigned long dbg_flags = DBG_ERROR | DBG_WARN;
-    unsigned long tid = 0;
+    pthread_t tid = 0;
 
     if (first) {
         first = FALSE;
@@ -74,7 +74,7 @@ _nine_debug_printf( unsigned long flag,
 
 #if defined(HAVE_PTHREAD)
     if (dbg_flags &amp; DBG_TID)
-        tid = (unsigned long)pthread_self();
+        tid = pthread_self();
 #endif
 
     if (dbg_flags &amp; flag) {
</pre></body></html>