]> git.saurik.com Git - wxWidgets.git/commitdiff
Had to #ifdef out wxGetFullHostName for Cygwin b20
authorJulian Smart <julian@anthemion.co.uk>
Mon, 20 Mar 2000 16:52:43 +0000 (16:52 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 20 Mar 2000 16:52:43 +0000 (16:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/utils.cpp

index b6bb6443b082f9b41681a0981e5aa75e2be351ea..f836d8dc4bc4e2813dc27c9e962d52e498d5004e 100644 (file)
@@ -41,7 +41,7 @@
 // #include "wx/msw/private.h" which itself includes <windows.h>, as this 
 // one in turn includes <winsock.h> unless we define WIN32_LEAN_AND_MEAN.
 //
-#if defined(__WIN32__) && !defined(__TWIN32__)
+#if defined(__WIN32__) && !defined(__TWIN32__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
 extern "C" {
     #include <winsock.h>    // we use socket functions in wxGetFullHostName()
 }
@@ -185,7 +185,7 @@ bool wxGetHostName(wxChar *buf, int maxSize)
 // get full hostname (with domain name if possible)
 bool wxGetFullHostName(wxChar *buf, int maxSize)
 {
-#if defined(__WIN32__) && !defined(__TWIN32__)
+#if defined(__WIN32__) && !defined(__TWIN32__) && ! (defined(__GNUWIN32__) && !defined(__MINGW32__))
     // TODO should use GetComputerNameEx() when available
     WSADATA wsa;
     if ( WSAStartup(MAKEWORD(1, 1), &wsa) == 0 )