mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-08 21:18:52 +00:00
ef85c4ff45
* This can be disabled using --disable-libgcrypt, which then disables encryption of secrets in transit to the secret service
19 lines
344 B
Makefile
19 lines
344 B
Makefile
|
|
noinst_LTLIBRARIES = \
|
|
libegg.la
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)
|
|
|
|
if WITH_GCRYPT
|
|
ENCRYPTION_SRCS = egg-dh.c egg-dh.h
|
|
ENCRYPTION_SRCS += egg-hkdf.c egg-hkdf.h
|
|
ENCRYPTION_SRCS += egg-libgcrypt.c egg-libgcrypt.h
|
|
else
|
|
ENCRYPTION_SRCS =
|
|
endif
|
|
|
|
libegg_la_SOURCES = \
|
|
egg-secure-memory.c egg-secure-memory.h \
|
|
$(ENCRYPTION_SRCS) \
|
|
$(BUILT_SOURCES)
|