diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2021-12-17 05:28:42 +0100 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2021-12-17 05:32:14 +0100 |
commit | e08225030dfb2090e756d26575f38c371e5a81cf (patch) | |
tree | 3b6284bdd8547907a10a6c571112830f99ae0720 /tools/gpgconf.c | |
parent | gpg: Emit compatible Ed25519 signature. (diff) | |
download | gnupg2-e08225030dfb2090e756d26575f38c371e5a81cf.tar.xz gnupg2-e08225030dfb2090e756d26575f38c371e5a81cf.zip |
w32: Prepare for the case gcrypt.h will not include winsock2.h.
* common/dynload.h: Include specific headers only.
* common/exechelp-w32.c: Include <windows.h>.
* common/gettime.c: Likewise.
* common/utf8conv.c: Likewise.
* tests/gpgscm/ffi.c: Likewise.
* tools/gpgconf.c: Likewise.
* configure.ac: Check winsock2.h, removing gl_HEADER_SYS_SOCKET.
--
GnuPG-bug-id: 5731
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to '')
-rw-r--r-- | tools/gpgconf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gpgconf.c b/tools/gpgconf.c index 31847452b..093468eb3 100644 --- a/tools/gpgconf.c +++ b/tools/gpgconf.c @@ -35,6 +35,9 @@ #include "../common/status.h" #include "../common/exechelp.h" +#ifdef HAVE_W32_SYSTEM +#include <windows.h> +#endif /* Constants to identify the commands and options. */ enum cmd_and_opt_values |