From d43b1ca852562882fc6930afc36a982801e3be87 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 10 Oct 2017 14:28:32 +0100 Subject: [PATCH] meson: Fix underlinkage of shadow loadable module Future work: probably some other modules are underlinked? Signed-off-by: Jon Turney --- hw/xfree86/dixmods/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build index ffaf3ef86..06ca56862 100644 --- a/hw/xfree86/dixmods/meson.build +++ b/hw/xfree86/dixmods/meson.build @@ -1,4 +1,4 @@ -shared_module( +fb = shared_module( 'fb', 'fbmodule.c', @@ -32,6 +32,7 @@ shared_module( c_args: xorg_c_args, dependencies: common_dep, link_whole: libxserver_miext_shadow, + link_with: fb, install: true, install_dir: module_dir,