diff options
Diffstat (limited to '')
-rw-r--r-- | agent/ChangeLog | 4 | ||||
-rw-r--r-- | agent/Makefile.am | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog index c167c0886..f34849a72 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,7 @@ +2001-12-18 Werner Koch <[email protected]> + + * Makefile.am: Use LIBGCRYPT macros + 2001-12-14 Werner Koch <[email protected]> * gpg-agent.c (main): New option --batch. New option --debug-wait diff --git a/agent/Makefile.am b/agent/Makefile.am index a2f8a9a8c..3d9cd2dfe 100644 --- a/agent/Makefile.am +++ b/agent/Makefile.am @@ -20,7 +20,7 @@ bin_PROGRAMS = gpg-agent -INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/intl +AM_CPPFLAGS = -I$(top_srcdir)/common $(LIBGCRYPT_CFLAGS) LDFLAGS = @LDFLAGS@ gpg_agent_SOURCES = \ @@ -33,8 +33,8 @@ gpg_agent_SOURCES = \ pkdecrypt.c gpg_agent_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a \ - ../common/libcommon.a \ - ../../libgcrypt/src/.libs/libgcrypt.so.1 + ../common/libcommon.a $(LIBGCRYPT_LIBS) + |