1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* gpgkeys_hkp.c, gpgkeys_ldap.c: #include <getopt.h> if it is available.

Also include extern references for optarg and optind since there is no
guarantee that any header file will include them.  Standards?  We don't
need no stinkin' standards

* Makefile.am: Use @GETOPT@ to pull in libiberty on those platforms that
need it.
This commit is contained in:
David Shaw 2003-05-31 03:52:02 +00:00
parent 5d3b948c8a
commit 0a86b45b9d
4 changed files with 24 additions and 5 deletions

View file

@ -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
@ -35,6 +38,9 @@
#include "util.h"
#endif
extern char *optarg;
extern int optind;
#define GET 0
#define SEND 1
#define SEARCH 2