]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/gsocket.c
removed Win16 code (patch 905241), last version with remains of Win16 support tagged...
[wxWidgets.git] / src / unix / gsocket.c
index dc6c7e570204b4003710cab36a86d44267200401..16eae12743e6e4810bb1337bb8b35adefd85bd7c 100644 (file)
@@ -261,7 +261,7 @@ GSocket *GSocket_new(void)
 void GSocket_close(GSocket *socket)
 {
     _GSocket_Disable_Events(socket);
-// gsockosx.c calls CFSocketInvalidate which closes the socket for us
+    /* gsockosx.c calls CFSocketInvalidate which closes the socket for us */
 #if !(defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__)))
     close(socket->m_fd);
 #endif
@@ -1616,8 +1616,10 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
   {
 #else
   /* Use gethostbyname by default */
-  int val = 1;  //VA doesn't like constants in conditional expressions at all
+#ifndef __WXMAC__
+  int val = 1;  /* VA doesn't like constants in conditional expressions */
   if (val)
+#endif
   {
 #endif
     struct in_addr *array_addr;