diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 17:53:00 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 17:53:00 +0000 |
commit | 2926d140e3eb8b89a785cf65ad9c62021c321f58 (patch) | |
tree | f5dc8cf40aeb44dfd1791af25d70f89af31ffd81 /libjava/include/posix.h | |
parent | 59814d6aec0aee03402040826d5513d7a40fe235 (diff) | |
download | gcc-2926d140e3eb8b89a785cf65ad9c62021c321f58.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44546 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/posix.h')
-rw-r--r-- | libjava/include/posix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libjava/include/posix.h b/libjava/include/posix.h index 278f7eb773b..e7ba3174354 100644 --- a/libjava/include/posix.h +++ b/libjava/include/posix.h @@ -8,6 +8,11 @@ This software is copyrighted work licensed under the terms of the Libgcj License. Please consult the file "LIBGCJ_LICENSE" for details. */ +/* Required on Tru64 UNIX V4/V5 so <sys/socket.h> defines prototypes of + socket functions with socklen_t instead of size_t. This must be defined + early so <standards.h> defines the correct version of __PIIX. */ +#define _POSIX_PII_SOCKET + #include <time.h> #include <sys/types.h> |