~unity-settings-daemon-team/unity-settings-daemon/16.04

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
NULL =

enabled_plugins =	\
	a11y-keyboard	\
	a11y-settings	\
    automount       \
	background	\
	clipboard	\
	color		\
	cursor		\
	dummy		\
	power		\
	housekeeping    \
	keyboard	\
	media-keys	\
	mouse		\
	remote-display	\
	screensaver-proxy \
	sound		\
	xrandr		\
	xsettings	\
	$(NULL)

disabled_plugins = $(NULL)

if HAVE_PACKAGEKIT
enabled_plugins += updates
else
disabled_plugins += updates
endif

if SMARTCARD_SUPPORT
enabled_plugins += smartcard
else
disabled_plugins += smartcard
endif

if HAVE_GUDEV
enabled_plugins += orientation
else
disabled_plugins += orientation
endif

if HAVE_WACOM
enabled_plugins += wacom
else
disabled_plugins += wacom
endif

if BUILD_PRINT_NOTIFICATIONS
enabled_plugins += print-notifications
else
disabled_plugins += print-notifications
endif

SUBDIRS = common $(enabled_plugins)
DIST_SUBDIRS = $(SUBDIRS) $(disabled_plugins)