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.

* Makefile.am: Use @GETOPT@ to pull in libiberty on those platforms that
need it.
This commit is contained in:
David Shaw 2003-05-28 22:29:04 +00:00
parent dcff0d959e
commit b54375f552
4 changed files with 16 additions and 5 deletions

View file

@ -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"