void-packages/srcpkgs/mesa/patches/fix-libXvMC-versioning.patch
Juan RP 82232c2d17 mesa: renamed from libGL; switch to glvnd by default.
Based on work by Stefano Ragni on #16497

Tested on x86_64-musl with and without elogind, as well
as with or without root rights on intel.
2019-12-08 11:56:08 +01:00

15 lines
453 B
Diff

Source: maxice8
Upstream: no
Reason: restores versioning of libXvMC drivers that was on autotools
--- src/gallium/targets/xvmc/meson.build
+++ src/gallium/targets/xvmc/meson.build
@@ -51,7 +51,7 @@ libxvmc_gallium = shared_library(
foreach d : [[with_gallium_r600, 'r600'], [with_gallium_nouveau, 'nouveau']]
if d[0]
- xvmc_drivers += 'libXvMC@0@.so'.format(d[1])
+ xvmc_drivers += 'libXvMC@0@.so.1.0.0'.format(d[1])
endif
endforeach