Biswapriyo Nath c2c299e79f community/libplasma: Fix linking with wayland libraries
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'
2025-07-29 16:24:31 +00:00
..