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/background/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/background') diff --git a/plugins/background/Makefile.am b/plugins/background/Makefile.am index ac32ceb..b2ab685 100644 --- a/plugins/background/Makefile.am +++ b/plugins/background/Makefile.am @@ -58,6 +58,7 @@ libbackground_la_LDFLAGS = \ libbackground_la_LIBADD = \ $(SETTINGS_PLUGIN_LIBS) \ $(MATE_DESKTOP_LIBS) \ + $(X11_LIBS) \ $(NULL) plugin_in_files = \ -- cgit v1.2.1