link-libshadow.patch 889 B

1234567891011121314151617181920212223242526272829303132
  1. From a530b6e8923f2b9153a773c8618a1e2f41619288 Mon Sep 17 00:00:00 2001
  2. From: Adam Jackson <ajax@redhat.com>
  3. Date: Tue, 30 Apr 2019 18:01:27 -0400
  4. Subject: [PATCH] meson: Fix libshadow.so linkage
  5. Don't link against fb, it's the driver's responsibility to load that
  6. first. Underlinking like this is unpleasant but this matches what
  7. autotools does.
  8. Fixes: xorg/xserver#540
  9. ---
  10. hw/xfree86/dixmods/meson.build | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build
  13. index 835d23215..0562b630f 100644
  14. --- a/hw/xfree86/dixmods/meson.build
  15. +++ b/hw/xfree86/dixmods/meson.build
  16. @@ -34,7 +34,7 @@ shared_module(
  17. c_args: xorg_c_args,
  18. dependencies: common_dep,
  19. link_whole: libxserver_miext_shadow,
  20. - link_with: [fb, e],
  21. + link_with: e,
  22. install: true,
  23. install_dir: module_dir,
  24. --
  25. 2.22.0