diff --git a/Mesa-drivers.changes b/Mesa-drivers.changes index 881111e..8858369 100644 --- a/Mesa-drivers.changes +++ b/Mesa-drivers.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Fri Sep 18 11:11:14 UTC 2020 - Stefan Dirsch + +- buildfix-ppc64le.patch + * buildfix for ppc64le (boo#1176562) + +------------------------------------------------------------------- +Thu Sep 17 17:51:17 UTC 2020 - Dirk Mueller + +- update to 20.1.8: + * mainly bugfixes, highlights: + - Crash in ruvd_end_frame when calling vaBeginPicture/vaEndPicture without rendering anything + - khr_debug-push-pop-group_gl: ../src/util/simple_mtx.h:86: simple_mtx_lock: Assertion `c != _SIMPLE_MTX_INVALID_VALUE' failed. + - Amber test opt_peel_loop_initial_if: Assertion failed + - Dirt Rally: Flickering glitches on certain foliage since Mesa 20.1.0 caused by MSAA + - [BRW] WRC 5 asserts with gallium nine and iris. + ------------------------------------------------------------------- Thu Sep 3 09:24:31 UTC 2020 - Stefan Dirsch diff --git a/Mesa-drivers.spec b/Mesa-drivers.spec index 0cf84af..f63d57d 100644 --- a/Mesa-drivers.spec +++ b/Mesa-drivers.spec @@ -127,6 +127,7 @@ Patch2: n_add-Mesa-headers-again.patch # never to be upstreamed Patch54: n_drirc-disable-rgb10-for-chromium-on-amd.patch Patch58: u_dep_xcb.patch +Patch60: buildfix-ppc64le.patch BuildRequires: bison BuildRequires: fdupes BuildRequires: flex @@ -700,6 +701,9 @@ rm -rf docs/README.{VMS,WIN32,OS2} %patch2 -p1 %patch54 -p1 %patch58 -p1 +%ifarch ppc64le +%patch60 -p1 +%endif # Remove requires to vulkan libs from baselibs.conf on platforms # where vulkan build is disabled; ugly ... diff --git a/Mesa.changes b/Mesa.changes index ae3a9c4..8858369 100644 --- a/Mesa.changes +++ b/Mesa.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Sep 18 11:11:14 UTC 2020 - Stefan Dirsch + +- buildfix-ppc64le.patch + * buildfix for ppc64le (boo#1176562) + ------------------------------------------------------------------- Thu Sep 17 17:51:17 UTC 2020 - Dirk Mueller diff --git a/Mesa.spec b/Mesa.spec index 094ae6c..e287d3d 100644 --- a/Mesa.spec +++ b/Mesa.spec @@ -126,6 +126,7 @@ Patch2: n_add-Mesa-headers-again.patch # never to be upstreamed Patch54: n_drirc-disable-rgb10-for-chromium-on-amd.patch Patch58: u_dep_xcb.patch +Patch60: buildfix-ppc64le.patch BuildRequires: bison BuildRequires: fdupes BuildRequires: flex @@ -699,6 +700,9 @@ rm -rf docs/README.{VMS,WIN32,OS2} %patch2 -p1 %patch54 -p1 %patch58 -p1 +%ifarch ppc64le +%patch60 -p1 +%endif # Remove requires to vulkan libs from baselibs.conf on platforms # where vulkan build is disabled; ugly ... diff --git a/buildfix-ppc64le.patch b/buildfix-ppc64le.patch new file mode 100644 index 0000000..2acaebc --- /dev/null +++ b/buildfix-ppc64le.patch @@ -0,0 +1,11 @@ +diff -u -r mesa-20.1.7.old/include/CL/cl_platform.h mesa-20.1.7/include/CL/cl_platform.h +--- mesa-20.1.7.old/include/CL/cl_platform.h 2020-09-18 13:08:16.978879000 +0200 ++++ mesa-20.1.7/include/CL/cl_platform.h 2020-09-18 13:09:04.324816000 +0200 +@@ -355,7 +355,6 @@ + + /* Define basic vector types */ + #if defined( __VEC__ ) +- #include /* may be omitted depending on compiler. AltiVec spec provides no way to detect whether the header is required. */ + typedef __vector unsigned char __cl_uchar16; + typedef __vector signed char __cl_char16; + typedef __vector unsigned short __cl_ushort8;