KZT, fix: broaden wine/ld detection in kzt_wine_bridge
Wine startup may mmap the dynamic linker using the real glibc filename (e.g. ld-2.28.so) rather than the symlink name ld-linux-x86-64.so.2.
The existing m_f_fd matching used strstr(basename, “ld-linux-x86-64.so.2”), which can miss the linker mmap event and therefore never run m_handle_ld().
When that happens, the KZT TB callback bridge is not installed, kzt_tb_callback never triggers on link_map updates, and wrapped/native passthrough for late-loaded graphics libs (libGL/libvulkan via Wine) fails.
Signed-off-by: zqz 2264460073@qq.com