OSDN Git Service

* java/net/natInetAddress.cc (java::net::InetAddress::aton):
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2001 20:27:06 +0000 (20:27 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2001 20:27:06 +0000 (20:27 +0000)
Wrap use of inet_pton in HAVE_INET6.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41547 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/net/natInetAddress.cc

index 8a0812a..142449f 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * java/net/natInetAddress.cc (java::net::InetAddress::aton):
+       Wrap use of inet_pton in HAVE_INET6.
+
 2001-04-25  Bryce McKinlay  <bryce@albatross.co.nz>
 
        java.security merge and ClassLoader compliance fixes.
index 68a0b41..627fd3c 100644 (file)
@@ -118,7 +118,7 @@ java::net::InetAddress::aton (jstring host)
       blen = 4;
     }
 #endif
-#ifdef HAVE_INET_PTON
+#if defined (HAVE_INET_PTON) && defined (HAVE_INET6)
   char inet6_addr[16];
   if (len == 0 && inet_pton (AF_INET6, hostname, inet6_addr) > 0)
     {