]> git.saurik.com Git - wxWidgets.git/commitdiff
Check for inet_addr/inet_aton.
authorGuilhem Lavaux <lavaux@easynet.fr>
Tue, 10 Aug 1999 17:48:11 +0000 (17:48 +0000)
committerGuilhem Lavaux <lavaux@easynet.fr>
Tue, 10 Aug 1999 17:48:11 +0000 (17:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3337 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in
src/unix/gsocket.c

index fa87fbf38146fd80042dafcf2167c94a1b246b11..0e894f9e054432c80a9e4949f201750abe3d3a6e 100644 (file)
@@ -1333,6 +1333,10 @@ AC_CHECK_FUNCS(nanosleep, AC_DEFINE(HAVE_NANOSLEEP), [
 dnl check for uname (POSIX) and gethostname (BSD)
 AC_CHECK_FUNCS(uname gethostname, break)
 
+dnl check for inet_addr, inet_aton, ...
+AC_CHECK_FUNCS(inet_addr)
+AC_CHECK_FUNCS(inet_aton)
+
 dnl ===========================================================================
 dnl Now we have all the info we need - use it!
 dnl ===========================================================================
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 */