mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
Use D-Bus properties instead of GetProperties
- Use D-Bus native properties instead of a GetProperties call. - Fix a number of front-ends by registering the right signals and marshallers following the "done" signal argument addition - Fix VerifyStart call in the pam module
This commit is contained in:
committed by
Daniel Drake
parent
f1f2ae35f8
commit
c9fdeb47aa
@ -3,11 +3,20 @@ if HAVE_PAM
|
||||
pammod_PROGRAMS = pam_fprintd.so
|
||||
pammoddir=$(libdir)/security
|
||||
|
||||
pam_fprintd_so_SOURCES = pam_fprintd.c
|
||||
pam_fprintd_so_SOURCES = pam_fprintd.c $(MARSHALFILES)
|
||||
pam_fprintd_so_CFLAGS = -fPIC $(WARN_CFLAGS) $(GLIB_CFLAGS)
|
||||
pam_fprintd_so_LDFLAGS = -shared
|
||||
pam_fprintd_so_LDADD = $(PAM_LIBS) $(GLIB_LIBS)
|
||||
|
||||
MARSHALFILES = marshal.c marshal.h
|
||||
GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
|
||||
BUILT_SOURCES = $(MARSHALFILES)
|
||||
|
||||
marshal.h: $(top_srcdir)/src/fprintd-marshal.list
|
||||
( $(GLIB_GENMARSHAL) --prefix=fprintd_marshal $(top_srcdir)/src/fprintd-marshal.list --header > marshal.h )
|
||||
marshal.c: marshal.h
|
||||
( $(GLIB_GENMARSHAL) --prefix=fprintd_marshal $(top_srcdir)/src/fprintd-marshal.list --body --header > marshal.c )
|
||||
|
||||
endif
|
||||
|
||||
EXTRA_DIST = pam_fprintd.c
|
||||
|
||||
Reference in New Issue
Block a user