* Makefile.am: Anything linking with libutil.a needs INTLLIBS as well on

platforms where INTLLIBS is set.
This commit is contained in:
David Shaw 2002-10-21 20:32:38 +00:00
parent 9e00f6816b
commit 45a8594ff9
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-10-21 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Anything linking with libutil.a needs INTLLIBS as
well on platforms where INTLLIBS is set.
2002-10-14 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_hkp.c (write_quoted): Use %-encoding instead of

View File

@ -18,7 +18,7 @@
## Process this file with automake to produce Makefile.in
INCLUDES = -I$(top_srcdir)/include
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
EXTRA_PROGRAMS = gpgkeys_ldap gpgkeys_hkp
EXTRA_SCRIPTS = gpgkeys_mailto
libexecdir = @GNUPG_LIBEXECDIR@
@ -31,4 +31,4 @@ libexec_SCRIPTS = @GPGKEYS_MAILTO@
noinst_SCRIPTS = gpgkeys_test
gpgkeys_ldap_LDADD = @LDAPLIBS@ @NETLIBS@
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @INTLLIBS@