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

* srv.h, srv.c: Include windows.h with MINGW32.

This commit is contained in:
David Shaw 2003-05-31 03:15:50 +00:00
parent 630ed74997
commit 4d297a7ff1
3 changed files with 13 additions and 1 deletions

View file

@ -20,10 +20,14 @@
#include <config.h>
#ifdef USE_DNS_SRV
#include <sys/types.h>
#ifdef __MINGW32__
#include <windows.h>
#else
#include <netinet/in.h>
#include <arpa/nameser.h>
#include <resolv.h>
#endif
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>