This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: {Patch] java.net network functions
- From: Richard Earnshaw <rearnsha at arm dot com>
- To: java-patches at gcc dot gnu dot org, Michael Koch <konqueror at gmx dot de>
- Cc: Richard dot Earnshaw at arm dot com
- Date: Thu, 21 Nov 2002 13:55:30 +0000
- Subject: Re: {Patch] java.net network functions
- Organization: ARM Ltd.
- Reply-to: Richard dot Earnshaw at arm dot com
> Hmm, I suppose include/platform.h is a link to include/posix.h. In
> posix.h sys/socket.h is included. Thats where ::socket() should be
> defined.
> I just move the code and made no real changes and I tried to get all
> needed #defines too. I'm currently clueless why ::socket isnt defined
> on arm but on my i386-linux.
The difference is that previously we didn't depend on sys/socket.h
existing (which is why it's wrapped in autoconf include guards). But with
your change we now assume it does exist (we use a function from it even if
we didn't include it). A newlib libc does not provide this header so we
then get the error.
R.