]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/gsocket.c
Whole lot of stuff for new wxFileDialog
[wxWidgets.git] / src / unix / gsocket.c
index 541ab46929d7ddb96e93949e6691be01668928e9..2ffafc86b6993ac60e806f8c349d0853966e723d 100644 (file)
@@ -972,9 +972,9 @@ 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 defined(HAVE_INET_ATON)
   if (inet_aton(hostname, addr) == 0) {
-#elif HAVE_INET_ADDR
+#elif defined(HAVE_INET_ADDR)
   /* Fix from Guillermo Rodriguez Garcia <guille@iies.es> */
   if ( (addr->s_addr = inet_addr(hostname)) == -1 ) {
 #else