7ce5ea4142
The GDM code upstream talks to the account service now, has better introspection annotations, and is more asynchronous. This commit updates the shell's copy to the latest upstream. Note, the API changed somewhat and so the callers will need to be fixed up subsequently. https://bugzilla.gnome.org/show_bug.cgi?id=631888
36 lines
821 B
Plaintext
36 lines
821 B
Plaintext
gdmuser_cflags = \
|
|
-I$(top_srcdir)/src \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DG_LOG_DOMAIN=\"GdmUser\" \
|
|
-DGDM_CACHE_DIR=\""$(localstatedir)/cache/gdm"\" \
|
|
$(GDMUSER_CFLAGS) \
|
|
$(NULL)
|
|
|
|
# please, keep this sorted alphabetically
|
|
gdmuser_source_h = \
|
|
gdmuser/gdm-user.h \
|
|
gdmuser/gdm-user-private.h \
|
|
gdmuser/gdm-user-manager.h \
|
|
$(NULL)
|
|
|
|
# please, keep this sorted alphabetically
|
|
gdmuser_source_c = \
|
|
gdmuser/gdm-user.c \
|
|
gdmuser/gdm-user-manager.c \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES += libgdmuser-1.0.la
|
|
|
|
libgdmuser_1_0_la_LIBADD = $(GDMUSER_LIBS)
|
|
libgdmuser_1_0_la_SOURCES = \
|
|
$(gdmuser_source_c) \
|
|
$(gdmuser_source_h) \
|
|
$(NULL)
|
|
libgdmuser_1_0_la_CPPFLAGS = $(gdmuser_cflags)
|
|
libgdmuser_1_0_la_LDFLAGS = $(LDADD)
|
|
|
|
|