This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: libjava/net/natInetAddress.cc uses inet_pton, not declared on irix6.2
- To: "Kaveh R. Ghazi" <ghazi at caip dot rutgers dot edu>
- Subject: Re: libjava/net/natInetAddress.cc uses inet_pton, not declared on irix6.2
- From: Tom Tromey <tromey at redhat dot com>
- Date: 24 Apr 2001 20:14:22 -0600
- Cc: bryce at waitaki dot otago dot ac dot nz, gcc at gcc dot gnu dot org, java at gcc dot gnu dot org
- References: <200104250144.VAA21136@caip.rutgers.edu>
- Reply-To: tromey at redhat dot com
>>>>> "Kaveh" == Kaveh R Ghazi <ghazi@caip.rutgers.edu> writes:
Kaveh> Anyway, Ok to install the following on the trunk and branch?
Kaveh> 2001-04-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
Kaveh> * java/net/natInetAddress.cc (java::net::InetAddress::aton):
Kaveh> Wrap use of inet_pton in HAVE_INET6.
Kaveh> -#ifdef HAVE_INET_PTON
Kaveh> +#if defined(HAVE_INET_PTON) && defined (HAVE_INET6)
This is missing a space before the first '('.
Other than that pedantic nit, this is great. Thanks!
Tom