From 1462391e13a746157924ce80b14d7fd68cd48430 Mon Sep 17 00:00:00 2001 From: orbea Date: Sun, 17 Mar 2024 10:14:22 -0700 Subject: plugins: add missing x11 linker flags Many of the plugins depend on the libX11 and libXi linker flags, but they are missing. With GNU libtool the -no-undefined flag is silently ignored so the build succeeds, but with slibtool is correctly sets -Wl,--no-undefined in the linker flags. Gentoo issue: https://bugs.gentoo.org/922326 --- plugins/xsettings/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/xsettings/Makefile.am') diff --git a/plugins/xsettings/Makefile.am b/plugins/xsettings/Makefile.am index 6e8e50f..e81842f 100644 --- a/plugins/xsettings/Makefile.am +++ b/plugins/xsettings/Makefile.am @@ -38,6 +38,7 @@ libxsettings_la_LDFLAGS = \ libxsettings_la_LIBADD = \ $(SETTINGS_PLUGIN_LIBS) \ $(FONTCONFIG_LIBS) \ + $(X11_LIBS) \ $(NULL) plugin_in_files = \ -- cgit v1.2.1