mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
* gpgkeys_hkp.c, gpgkeys_ldap.c: #include <getopt.h> if it is available.
* Makefile.am: Use @GETOPT@ to pull in libiberty on those platforms that need it.
This commit is contained in:
parent
dcff0d959e
commit
b54375f552
@ -1,3 +1,11 @@
|
||||
2003-05-28 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* gpgkeys_hkp.c, gpgkeys_ldap.c: #include <getopt.h> if it is
|
||||
available.
|
||||
|
||||
* Makefile.am: Use @GETOPT@ to pull in libiberty on those
|
||||
platforms that need it.
|
||||
|
||||
2003-03-23 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* Makefile.am: gpgkeys_hkp needs @INTLLIBS@ on some platforms.
|
||||
|
@ -23,12 +23,9 @@ EXTRA_PROGRAMS = gpgkeys_ldap gpgkeys_hkp
|
||||
EXTRA_SCRIPTS = gpgkeys_mailto
|
||||
libexecdir = @libexecdir@/@PACKAGE@
|
||||
|
||||
# We don't need the libs the regular GPG binaries do
|
||||
LIBS=
|
||||
|
||||
libexec_PROGRAMS = @GPGKEYS_LDAP@ @GPGKEYS_HKP@
|
||||
libexec_SCRIPTS = @GPGKEYS_MAILTO@
|
||||
noinst_SCRIPTS = gpgkeys_test
|
||||
|
||||
gpgkeys_ldap_LDADD = @LDAPLIBS@ @NETLIBS@
|
||||
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @INTLLIBS@ @CAPLIBS@
|
||||
gpgkeys_ldap_LDADD = @LDAPLIBS@ @NETLIBS@ @GETOPT@
|
||||
gpgkeys_hkp_LDADD = ../util/libutil.a @NETLIBS@ @INTLLIBS@ @CAPLIBS@ @GETOPT@
|
||||
|
@ -25,6 +25,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_GETOPT_H
|
||||
#include <getopt.h>
|
||||
#endif
|
||||
#define INCLUDED_BY_MAIN_MODULE 1
|
||||
#include "util.h"
|
||||
#include "http.h"
|
||||
|
@ -23,6 +23,9 @@
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_GETOPT_H
|
||||
#include <getopt.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#ifdef NEED_LBER_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user