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/xrandr | |
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/xrandr')
-rw-r--r-- | plugins/xrandr/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/xrandr/Makefile.am b/plugins/xrandr/Makefile.am index 1a398d7..6bdfaae 100644 --- a/plugins/xrandr/Makefile.am +++ b/plugins/xrandr/Makefile.am @@ -55,6 +55,7 @@ libxrandr_la_CPPFLAGS = \ libxrandr_la_CFLAGS = \ $(SETTINGS_PLUGIN_CFLAGS) \ $(LIBMATENOTIFY_CFLAGS) \ + $(MATE_DESKTOP_CFLAGS) \ $(AM_CFLAGS) libxrandr_la_LDFLAGS = \ @@ -62,7 +63,8 @@ libxrandr_la_LDFLAGS = \ libxrandr_la_LIBADD = \ $(SETTINGS_PLUGIN_LIBS) \ - $(LIBMATENOTIFY_LIBS) + $(LIBMATENOTIFY_LIBS) \ + $(MATE_DESKTOP_LIBS) plugin_in_files = \ xrandr.mate-settings-plugin.in |