~jbicha/unity-settings-daemon/drop-updates-plugin

« back to all changes in this revision

Viewing changes to plugins/updates/Makefile.am

  • Committer: Jeremy Bicha
  • Date: 2017-03-22 16:11:54 UTC
  • Revision ID: jbicha@ubuntu.com-20170322161154-r6ygbqyi5wdr4uly
updates: Remove the updates plugin

The functionality now lives in gnome-software that has its own session
service for update polling.

https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=fc22a8100

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
plugin_name = updates
2
 
 
3
 
plugin_LTLIBRARIES = \
4
 
        libupdates.la
5
 
 
6
 
libupdates_la_SOURCES = \
7
 
        gsd-updates-common.h \
8
 
        gsd-updates-plugin.c \
9
 
        gsd-updates-refresh.h \
10
 
        gsd-updates-refresh.c \
11
 
        gsd-updates-firmware.h \
12
 
        gsd-updates-firmware.c \
13
 
        gsd-updates-manager.h \
14
 
        gsd-updates-manager.c
15
 
 
16
 
libupdates_la_CPPFLAGS = \
17
 
        -I$(top_srcdir)/gnome-settings-daemon \
18
 
        -DGNOME_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \
19
 
        $(AM_CPPFLAGS)
20
 
 
21
 
libupdates_la_CFLAGS = \
22
 
        $(PLUGIN_CFLAGS) \
23
 
        $(SETTINGS_PLUGIN_CFLAGS) \
24
 
        $(GUDEV_CFLAGS) \
25
 
        -DG_UDEV_API_IS_SUBJECT_TO_CHANGE \
26
 
        $(PACKAGEKIT_CFLAGS) \
27
 
        -DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE \
28
 
        -DDATADIR=\"$(datadir)\" \
29
 
        -DBINDIR=\"$(bindir)\" \
30
 
        -DLIBEXECDIR=\"$(libexecdir)\" \
31
 
        -I$(top_srcdir)/data \
32
 
        $(AM_CFLAGS)
33
 
 
34
 
libupdates_la_LDFLAGS = \
35
 
        $(GSD_PLUGIN_LDFLAGS)
36
 
 
37
 
libupdates_la_LIBADD = \
38
 
        $(SETTINGS_PLUGIN_LIBS) \
39
 
        $(PACKAGEKIT_LIBS)
40
 
 
41
 
plugin_in_files = \
42
 
        updates.gnome-settings-plugin.in
43
 
 
44
 
plugin_DATA = $(plugin_in_files:.gnome-settings-plugin.in=.gnome-settings-plugin)
45
 
 
46
 
EXTRA_DIST = \
47
 
        $(plugin_in_files)
48
 
 
49
 
CLEANFILES = \
50
 
        $(plugin_DATA)
51
 
 
52
 
DISTCLEANFILES = \
53
 
        $(plugin_DATA)
54
 
 
55
 
@GSD_INTLTOOL_PLUGIN_RULE@