diff options
author | Marcus Brinkmann <mb@g10code.com> | 2009-10-16 20:35:03 +0200 |
---|---|---|
committer | Marcus Brinkmann <mb@g10code.com> | 2009-10-16 20:35:03 +0200 |
commit | de563fdeb5078fec5b8ffb24a0fe07c0aa016bbb (patch) | |
tree | a9f9cd0560772255708c4fdf6bce95221d983629 /common/Makefile.am | |
parent | Somehow this slipped through. Really commit this time. (diff) | |
download | gnupg2-de563fdeb5078fec5b8ffb24a0fe07c0aa016bbb.tar.xz gnupg2-de563fdeb5078fec5b8ffb24a0fe07c0aa016bbb.zip |
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* configure.ac: Check for libassuan instead of libassuan-pth.
common/
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* Makefile.am (libcommon_a_CFLAGS): Use LIBASSUAN_CFLAGS instead
of LIBASSUAN_PTH_CFLAGS.
scd/
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* AM_CFLAGS, scdaemon_LDADD: Use libassuan instead of libassuan-pth.
* scdaemon.c: Invoke ASSUAN_SYSTEM_PTH_IMPL.
(main): Call assuan_set_system_hooks and assuan_sock_init.
g13/
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* AM_CFLAGS, g13_LDADD: Use libassuan instead of libassuan-pth.
* g13.c: Invoke ASSUAN_SYSTEM_PTH_IMPL.
(main): Call assuan_set_system_hooks.
agent/
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* gpg_agent_CFLAGS, gpg_agent_LDADD: Use libassuan instead of
libassuan-pth.
* gpg-agent.c: Invoke ASSUAN_SYSTEM_PTH_IMPL.
(main): Call assuan_set_system_hooks and assuan_sock_init.
Fix invocation of assuan_socket_connect.
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index dd3661dac..10be46eba 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -87,7 +87,7 @@ libcommonpth_a_SOURCES = $(common_sources) if USE_DNS_SRV libcommonpth_a_SOURCES += srv.c endif -libcommonpth_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_PTH_CFLAGS) $(PTH_CFLAGS) +libcommonpth_a_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) $(PTH_CFLAGS) libsimple_pwquery_a_SOURCES = \ simple-pwquery.c simple-pwquery.h asshelp.c asshelp.h |