diff options
author | Jasmine Hassan <[email protected]> | 2012-12-15 02:57:08 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-12-15 02:57:08 +0200 |
commit | 7e6d4ef02b5d8d7ae8c9dcc27a37e9f844b09b90 (patch) | |
tree | c208a985b560880a8ecf064a75683f69c15aba18 /plugins/background/Makefile.am | |
parent | 221c4df4581638c818b37dc4f8ca20fd48122d3f (diff) | |
download | mate-settings-daemon-7e6d4ef02b5d8d7ae8c9dcc27a37e9f844b09b90.tar.bz2 mate-settings-daemon-7e6d4ef02b5d8d7ae8c9dcc27a37e9f844b09b90.tar.xz |
[plugins] only link background/xrandr to mate-desktop, not main process
Most of the plugins do not need gnome-desktop's functionality, so there is
no point in the main process linking against it.
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=ed54ceee46b6a56613c8aeb3d594f6a485400ef9
Diffstat (limited to 'plugins/background/Makefile.am')
-rw-r--r-- | plugins/background/Makefile.am | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/plugins/background/Makefile.am b/plugins/background/Makefile.am index a047573..01f0fc5 100644 --- a/plugins/background/Makefile.am +++ b/plugins/background/Makefile.am @@ -17,11 +17,13 @@ test_background_CPPFLAGS = \ test_background_CFLAGS = \ $(SETTINGS_PLUGIN_CFLAGS) \ + $(MATE_DESKTOP_CFLAGS) \ $(AM_CFLAGS) test_background_LDADD = \ $(top_builddir)/mate-settings-daemon/libmsd-profile.la \ $(SETTINGS_PLUGIN_LIBS) \ + $(MATE_DESKTOP_LIBS) \ $(X11_LIBS) \ $(NULL) @@ -30,8 +32,8 @@ plugin_LTLIBRARIES = \ $(NULL) libbackground_la_SOURCES = \ - msd-background-plugin.h \ - msd-background-plugin.c \ + msd-background-plugin.h \ + msd-background-plugin.c \ msd-background-manager.h \ msd-background-manager.c \ $(NULL) @@ -44,14 +46,16 @@ libbackground_la_CPPFLAGS = \ libbackground_la_CFLAGS = \ $(SETTINGS_PLUGIN_CFLAGS) \ + $(MATE_DESKTOP_CFLAGS) \ $(AM_CFLAGS) libbackground_la_LDFLAGS = \ - $(MSD_PLUGIN_LDFLAGS) \ + $(MSD_PLUGIN_LDFLAGS) \ $(NULL) libbackground_la_LIBADD = \ $(SETTINGS_PLUGIN_LIBS) \ + $(MATE_DESKTOP_LIBS) \ $(NULL) plugin_in_files = \ |