]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/gsocket.c
Check for inet_addr/inet_aton.
[wxWidgets.git] / src / unix / gsocket.c
index c860fca2010c71a069746bfcaea6a6af571e9ebd..541ab46929d7ddb96e93949e6691be01668928e9 100644 (file)
@@ -972,7 +972,15 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
   addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
 
   /* If it is a numeric host name, convert it now */
+#if HAVE_INET_ATON
   if (inet_aton(hostname, addr) == 0) {
+#elif HAVE_INET_ADDR
+  /* Fix from Guillermo Rodriguez Garcia <guille@iies.es> */
+  if ( (addr->s_addr = inet_addr(hostname)) == -1 ) {
+#else
+  /* Use gethostbyname by default */
+  if (1) {
+#endif
     struct in_addr *array_addr;
 
     /* It is a real name, we solve it */