Lots of Unix/Unicode compile fixes, some of which
are just #ifdef 0 such as the wxExecute calls in gdcps.cpp. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -719,10 +719,10 @@ wxDialUpManagerImpl::CheckIfconfig()
|
||||
hasModem = strstr(output,"ipdptp") != (char *)NULL;
|
||||
hasLAN = strstr(output, "hme") != (char *)NULL;
|
||||
#elif defined(__LINUX__) || defined (__FREEBSD__)
|
||||
hasModem = strstr(output,"ppp") // ppp
|
||||
|| strstr(output,"sl") // slip
|
||||
|| strstr(output,"pl"); // plip
|
||||
hasLAN = strstr(output, "eth") != NULL;
|
||||
hasModem = strstr(output.fn_str(),"ppp") // ppp
|
||||
|| strstr(output.fn_str(),"sl") // slip
|
||||
|| strstr(output.fn_str(),"pl"); // plip
|
||||
hasLAN = strstr(output.fn_str(), "eth") != NULL;
|
||||
#elif defined(__SGI__) // IRIX
|
||||
hasModem = strstr(output, "ppp") != NULL; // PPP
|
||||
#elif defined(__HPUX__)
|
||||
|
Reference in New Issue
Block a user