diff options
author | Werner Koch <wk@gnupg.org> | 2001-12-18 20:35:12 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2001-12-18 20:35:12 +0100 |
commit | 86521773dffaed785de0eebd1a05040e673ee638 (patch) | |
tree | 6135c362e375e1e31a2870416a312820591ab25f /agent | |
parent | Changes to be used with the new libksba interface. (diff) | |
download | gnupg2-86521773dffaed785de0eebd1a05040e673ee638.tar.xz gnupg2-86521773dffaed785de0eebd1a05040e673ee638.zip |
* Makefile.am (AM_CPPFLAGS): Add flags for libksbaNEWPG-0-0-0
* Makefile.am (AM_CPPFLAGS): Include flags for gcrypt and ksba
* Makefile.am: Use LIBGCRYPT macros
Diffstat (limited to 'agent')
-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 <wk@gnupg.org> + + * Makefile.am: Use LIBGCRYPT macros + 2001-12-14 Werner Koch <wk@gnupg.org> * 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) + |