1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-03 12:11:33 +01:00

* Makefile.am: Don't hard-code the LDAP libraries - get them from LDAPLIBS

via configure.  Also, gpgkeys_hkp is a program, not a script.
This commit is contained in:
David Shaw 2002-06-11 21:38:02 +00:00
parent f1c38eea2a
commit 7a5c28ffe9
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2002-06-11 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Don't hard-code the LDAP libraries - get them from
LDAPLIBS via configure. Also, gpgkeys_hkp is a program, not a
script.
2002-06-10 David Shaw <dshaw@jabberwocky.com>
* gpgkeys_ldap.c (include_subkeys): Default "include-subkeys" to

View File

@ -1,4 +1,4 @@
# Copyright (C) 2001 Free Software Foundation, Inc.
# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
#
# This file is part of GnuPG.
#
@ -25,11 +25,12 @@ EXTRA_SCRIPTS = gpgkeys_mailto
# We don't need the libs the regular GPG binaries do
LIBS=
bin_PROGRAMS = @GPGKEYS_LDAP@
bin_SCRIPTS = @GPGKEYS_MAILTO@ @GPGKEYS_HKP@
bin_PROGRAMS = @GPGKEYS_LDAP@ @GPGKEYS_HKP@
bin_SCRIPTS = @GPGKEYS_MAILTO@
noinst_SCRIPTS = gpgkeys_test
# don't distribute hkp for now
nodist_gpgkeys_hkp_SOURCES = gpgkeys_hkp.c
gpgkeys_ldap_LDADD = -lldap -llber -lresolv
gpgkeys_ldap_LDADD = @LDAPLIBS@ @NETLIBS@
gpgkeys_hkp_LDADD = @NETLIBS@