diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-08 00:26:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-08 00:26:26 +0000 |
commit | 2e5228f9648032bc8b53cdb6a278f41d963a5669 (patch) | |
tree | 8c0c99089e2cf5610ab9e4b0afd4065fe0a964e4 | |
parent | bd8938985e9653601491742c9e4a4cfbe22e73ec (diff) | |
download | cygnal-2e5228f9648032bc8b53cdb6a278f41d963a5669.tar.gz cygnal-2e5228f9648032bc8b53cdb6a278f41d963a5669.tar.bz2 cygnal-2e5228f9648032bc8b53cdb6a278f41d963a5669.zip |
* include/cygwin/in.h: Don't define ipv6 stuff unless we call for it
specifically since it isn't really implemented yet.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/in.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index db770a50c..462b999e1 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2003-09-07 Christopher Faylor <cgf@redhat.com> + * include/cygwin/in.h: Don't define ipv6 stuff unless we call for it + specifically since it isn't really implemented yet. + +2003-09-07 Christopher Faylor <cgf@redhat.com> + * cygheap.cc (_csbrk): More left coercion cleanup. * fhandler_tty.cc (fhandler_tty_slave::read): Ditto. (fhandler_tty_slave::write): Ditto. diff --git a/winsup/cygwin/include/cygwin/in.h b/winsup/cygwin/include/cygwin/in.h index a2124552f..76bdaaa3e 100644 --- a/winsup/cygwin/include/cygwin/in.h +++ b/winsup/cygwin/include/cygwin/in.h @@ -170,6 +170,7 @@ struct sockaddr_in #endif +#ifdef USE_IPV6 /* IPv6 definitions as we start to include them. This is just a beginning dont get excited 8) */ struct in6_addr @@ -184,4 +185,5 @@ struct sockaddr_in6 unsigned long sin6_flowinfo; struct in6_addr sin6_addr; }; +#endif #endif /* _CYGWIN_IN_H */ |