diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2001-08-01 17:53:00 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2001-08-01 17:53:00 +0000 |
commit | 60a78ccfac331b0d4ff71fcdddcfc302817eb110 (patch) | |
tree | f5dc8cf40aeb44dfd1791af25d70f89af31ffd81 /libjava/include/config.h.in | |
parent | 2a25b23f7fc4970eb1760f5a3001e626720fa844 (diff) | |
download | gcc-60a78ccfac331b0d4ff71fcdddcfc302817eb110.zip gcc-60a78ccfac331b0d4ff71fcdddcfc302817eb110.tar.gz gcc-60a78ccfac331b0d4ff71fcdddcfc302817eb110.tar.bz2 |
re PR libgcj/3694 (natPlainDatagramSocketImpl.cc doesn't compile in ALPHA OSF1)
* include/posix.h (_POSIX_PII_SOCKET): Define.
* configure.in (HAVE_SOCKLEN_T): Define.
* java/net/natPlainSocketImpl.cc [!HAVE_SOCKLEN_T]: Move socklen_t
definition up.
(_JV_accept): New function, avoids Tru64 UNIX accept macro.
(java::net::PlainSocketImpl::accept): Use it.
Fixes PRs libgcj/3694, libgcj/3696.
* configure.in (HAVE_STRUCT_IPV6_MREQ): New test.
* acconfig.h (HAVE_STRUCT_IPV6_MREQ): Provide template.
* configure, include/config.h.in: Regenerate.
* java/net/natPlainDatagramSocketImpl.cc (union McastReq): Use it.
(mcastGrp): Likewise.
(java::net::PlainDatagramSocketImpl::setOption): Guard against
missing IPV6_MULTICAST_IF.
Fixes PR libgcj/3694.
From-SVN: r44546
Diffstat (limited to 'libjava/include/config.h.in')
-rw-r--r-- | libjava/include/config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libjava/include/config.h.in b/libjava/include/config.h.in index f23c881..cc3d773 100644 --- a/libjava/include/config.h.in +++ b/libjava/include/config.h.in @@ -83,6 +83,9 @@ /* Define if struct ip_mreq is defined in netinet/in.h. */ #undef HAVE_STRUCT_IP_MREQ +/* Define if struct ipv6_mreq is defined in netinet/in.h. */ +#undef HAVE_STRUCT_IPV6_MREQ + /* Define it socklen_t typedef is in sys/socket.h. */ #undef HAVE_SOCKLEN_T |