]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/dialup.cpp
Include wx/module.h according to precompiled headers of wx/wx.h (with other minor...
[wxWidgets.git] / src / unix / dialup.cpp
index b71a5cc8a41cfc6e3f9220a4cdc6cca367725192..2eabc7aa2eb78cb5e314e62278308ba9c4b8a42b 100644 (file)
@@ -23,9 +23,9 @@
     #include "wx/event.h"
     #include "wx/app.h"
     #include "wx/utils.h"
+    #include "wx/timer.h"
 #endif // !PCH
 
-#include "wx/timer.h"
 #include "wx/filefn.h"
 #include "wx/ffile.h"
 #include "wx/process.h"
@@ -580,9 +580,11 @@ wxDialUpManagerImpl::NetConnection wxDialUpManagerImpl::CheckConnect()
    }
    else // failed to connect
    {
+#ifdef ENETUNREACH
        if(errno == ENETUNREACH)
           return Net_No; // network is unreachable
        else
+#endif
           return Net_Unknown; // connect failed, but don't know why
    }
 }