mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2025-12-20 05:50:07 +01:00
Remove "nodelete" linker flag now that we use sd-bus and not dbus-glib, so that libraries that pam_fprintd links to can be unloaded. This was added because GLib's type system expects to be initialised once and only once per process, and re-loading this type system when it had already been initialised caused crashes.
13 lines
375 B
Makefile
13 lines
375 B
Makefile
if HAVE_PAM
|
|
|
|
pammod_LTLIBRARIES = pam_fprintd.la
|
|
pammoddir=$(libdir)/security
|
|
|
|
pam_fprintd_la_SOURCES = pam_fprintd.c
|
|
pam_fprintd_la_CFLAGS = -fPIC $(WARN_CFLAGS) $(PAM_MODULE_CFLAGS) -DLOCALEDIR="\"$(localedir)\""
|
|
pam_fprintd_la_LDFLAGS = -avoid-version -module
|
|
pam_fprintd_la_LIBADD = $(PAM_LIBS) $(PAM_MODULE_LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST = pam_fprintd.c fingerprint-strings.h
|