mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-02 20:21:43 +01:00
This fixes the wrong namespace with imported wayland symbols. * Before: $ objdump -T libPlasma.so.6.4.2 | grep wl_ 0000000000000000 DO *UND* 0000000000000000 (Qt_6) wl_region_interface 0000000000000000 DO *UND* 0000000000000000 (Qt_6) wl_surface_interface * After (fixed): $ objdump -T libPlasma.so.6.4.2 | grep wl_ 0000000000000000 DO *UND* 0000000000000000 Base wl_region_interface 0000000000000000 DO *UND* 0000000000000000 Base wl_surface_interface Otherwise, the following linking error is shown. ld: /usr/lib/libPlasma.so.6.4.2: undefined reference to `wl_surface_interface@Qt_6' ld: /usr/lib/libPlasma.so.6.4.2: undefined reference to `wl_region_interface@Qt_6'