This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: minires-devel-0.97-1: resolv.h fails
minires maintainer:
so please consider the attached patch for minires-devel
(both versions fail)
Corinna Vinschen schrieb:
On Oct 18 03:28, Reini Urban wrote:
minires-devel-0.97-1:
#include <resolv.h> fails suddenly.
Apparently /usr/include/resolv.h misses the definition for
sockaddr_in, which is defined in <cygwin/in.h>
Have no clue why it suddenly fails. Anyone else?
These headers didn't change for years...
Which file is supposed to include cygwin/in.h? I found nothing.
netinet/in.h
On other systems it's defined in sys/socket.h, which is included in
resolv.h.
On Linux as well as on Cygwin:
$ cat > x.c << EOF
#include <sys/socket.h>
struct sockaddr_in si;
EOF
$ gcc -c x.c
x.c:2: error: storage size of `si' isn't known
$ cat > x.c << EOF
#include <netinet/in.h>
struct sockaddr_in si;
EOF
$ gcc -c x.c
$
--
Reini Urban
http://xarch.tu-graz.ac.at/home/rurban/
2004-10-18 14:52:56 rurban@x-ray.at
* resolv.h: declare sockaddr_in
--- usr/include/resolv.h.orig 2004-03-02 05:33:04.000000000 +0200
+++ usr/include/resolv.h 2004-10-18 14:55:31.241878400 +0200
@@ -64,6 +64,7 @@
#endif
#include <sys/cdefs.h>
#include <sys/socket.h>
+#include <netinet/in.h>
#include <stdio.h>
#include <arpa/nameser.h>
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/