Skip to content

Commit cbee133

Browse files
onlylunixclassabbyamp
authored andcommitted
mesa: update to 25.3.1
- 25.2.0 removes libxatracker - 25.3.0 removes mesa-vdpau
1 parent e4c34a0 commit cbee133

File tree

7 files changed

+157
-114
lines changed

7 files changed

+157
-114
lines changed

common/shlibs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,6 @@ libcryptui.so.0 libcryptui-3.4.0_1
10171017
libkeyutils.so.1 libkeyutils-1.5.5_1
10181018
libiptcdata.so.0 libiptcdata-1.0.4_1
10191019
libutempter.so.0 libutempter-1.1.5_1
1020-
libxatracker.so.2 libxatracker-10.0.0_2
10211020
libtumbler-1.so.0 tumbler-4.9.2_1
10221021
libwebrtc-audio-coding-1.so.3 webrtc-audio-processing-1.3_1
10231022
libwebrtc-audio-processing-1.so.3 webrtc-audio-processing-1.3_1

srcpkgs/libxatracker

Lines changed: 0 additions & 1 deletion
This file was deleted.

srcpkgs/mesa-vdpau

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
--- a/src/util/u_endian.h 2017-12-21 18:31:22.000000000 +0100
2-
+++ b/src/util/u_endian.h 2017-12-26 09:22:52.597199480 +0100
3-
@@ -68,6 +68,16 @@
4-
5-
#define PIPE_ARCH_LITTLE_ENDIAN
1+
--- a/src/util/u_endian.h 2025-09-30 15:31:39.114657163 +0300
2+
+++ b/src/util/u_endian.h 2025-09-30 15:22:18.962576906 +0300
3+
@@ -92,6 +92,16 @@
4+
#define UTIL_ARCH_LITTLE_ENDIAN 1
5+
#define UTIL_ARCH_BIG_ENDIAN 0
66

77
+#else
88
+/* Musl libc */
@@ -16,4 +16,4 @@
1616
+
1717
#endif
1818

19-
#endif
19+
#if !defined(UTIL_ARCH_LITTLE_ENDIAN) || !defined(UTIL_ARCH_BIG_ENDIAN)

srcpkgs/mesa/patches/musl.patch

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
--- a/src/util/rand_xor.c 2020-10-03 12:27:48.489024729 +0200
2-
+++ b/src/util/rand_xor.c 2020-10-03 12:31:05.927113521 +0200
1+
--- a/src/util/rand_xor.c 2025-09-30 15:31:17.368731386 +0300
2+
+++ b/src/util/rand_xor.c 2025-09-30 15:24:46.938064862 +0300
33
@@ -28,6 +28,7 @@
44
#if defined(HAVE_GETRANDOM)
55
#include <sys/random.h>
@@ -8,33 +8,13 @@
88
#include <unistd.h>
99
#include <fcntl.h>
1010
#endif
11-
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
12-
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
13-
@@ -30,6 +30,7 @@
11+
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h 2025-09-30 15:31:17.368731386 +0300
12+
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h 2025-09-30 15:24:46.938064862 +0300
13+
@@ -13,6 +13,7 @@
1414

1515
#include <amdgpu.h>
1616
#include <pthread.h>
1717
+#include <sys/types.h>
1818
#include "util/list.h"
1919
#include "util/rwlock.h"
2020
#include "ac_gpu_info.h"
21-
--- a/src/gallium/frontends/nine/nine_debug.c 2020-03-06 07:46:48.278918421 +0100
22-
+++ b/src/gallium/frontends/nine/nine_debug.c 2020-03-06 07:51:32.919964119 +0100
23-
@@ -65,7 +65,7 @@ _nine_debug_printf( unsigned long flag,
24-
{
25-
static boolean first = TRUE;
26-
static unsigned long dbg_flags = DBG_ERROR | DBG_WARN;
27-
- unsigned long tid = 0;
28-
+ pthread_t tid = 0;
29-
30-
if (first) {
31-
first = FALSE;
32-
@@ -74,7 +74,7 @@ _nine_debug_printf( unsigned long flag,
33-
34-
#if defined(HAVE_PTHREAD)
35-
if (dbg_flags & DBG_TID)
36-
- tid = (unsigned long)pthread_self();
37-
+ tid = pthread_self();
38-
#endif
39-
40-
if (dbg_flags & flag) {

0 commit comments

Comments
 (0)