mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Use OpenSSL's HMAC API instead of NSS. Fixes: Fixes: https://pagure.io/freeipa/issue/6857 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
19 lines
465 B
Makefile
19 lines
465 B
Makefile
NULL =
|
|
|
|
PLUGIN_COMMON_DIR = $(srcdir)/../common
|
|
AM_CPPFLAGS = \
|
|
-I$(PLUGIN_COMMON_DIR) \
|
|
$(DIRSRV_CFLAGS) \
|
|
$(CRYPTO_CFLAGS) \
|
|
$(NSPR_CFLAGS) \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES = libhotp.la libotp.la
|
|
libhotp_la_SOURCES = hotp.c hotp.h
|
|
libotp_la_SOURCES = otp_config.c otp_config.h otp_token.c otp_token.h
|
|
libotp_la_LIBADD = libhotp.la $(CRYPTO_LIBS)
|
|
|
|
check_PROGRAMS = t_hotp
|
|
TESTS = $(check_PROGRAMS)
|
|
t_hotp_LDADD = libhotp.la $(CRYPTO_LIBS)
|