diff options
author | David Shaw <[email protected]> | 2002-06-11 21:38:02 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-06-11 21:38:02 +0000 |
commit | 7a5c28ffe9d29ed010626a0f42ccef2533a42c1d (patch) | |
tree | 05fe99dce523f7d56b204fb058284c29f7b368b4 | |
parent | * gpgkeys_ldap.c (include_subkeys): Default "include-subkeys" to off, (diff) | |
download | gnupg-7a5c28ffe9d29ed010626a0f42ccef2533a42c1d.tar.gz gnupg-7a5c28ffe9d29ed010626a0f42ccef2533a42c1d.zip |
* Makefile.am: Don't hard-code the LDAP libraries - get them from LDAPLIBS
via configure. Also, gpgkeys_hkp is a program, not a script.
-rw-r--r-- | keyserver/ChangeLog | 6 | ||||
-rw-r--r-- | keyserver/Makefile.am | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog index 306dcd892..0831eebb8 100644 --- a/keyserver/ChangeLog +++ b/keyserver/ChangeLog @@ -1,3 +1,9 @@ +2002-06-11 David Shaw <[email protected]> + + * 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 <[email protected]> * gpgkeys_ldap.c (include_subkeys): Default "include-subkeys" to diff --git a/keyserver/Makefile.am b/keyserver/Makefile.am index de126510a..343fb4bd2 100644 --- a/keyserver/Makefile.am +++ b/keyserver/Makefile.am @@ -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@ |