Handle OpenBSD in wxDialUpManager code.
Closes #13716. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
ecc3b88b05
commit
7daecf9e6a
@ -464,6 +464,7 @@ All:
|
||||
- Made wxGetLocalTimeMillis() really return local time, added
|
||||
wxGetUTCTimeMillis() returning what this function used to return.
|
||||
- Added wxCriticalSection::TryEnter() (Catalin Raceanu).
|
||||
- Add support for OpenBSD to wxDialUpManager (brad0).
|
||||
|
||||
All (GUI):
|
||||
|
||||
|
@ -682,7 +682,7 @@ wxDialUpManagerImpl::CheckIfconfig()
|
||||
defined(__SOLARIS__) || defined (__SUNOS__)
|
||||
// need to add -a flag
|
||||
cmd << wxT(" -a");
|
||||
#elif defined(__LINUX__) || defined(__SGI__)
|
||||
#elif defined(__LINUX__) || defined(__SGI__) || defined(__OPENBSD__)
|
||||
// nothing to be added to ifconfig
|
||||
#elif defined(__FREEBSD__) || defined(__DARWIN__) || defined(__QNX__)
|
||||
// add -l flag
|
||||
@ -723,7 +723,8 @@ wxDialUpManagerImpl::CheckIfconfig()
|
||||
// dialup device under SunOS/Solaris
|
||||
hasModem = strstr(output.fn_str(),"ipdptp") != NULL;
|
||||
hasLAN = strstr(output.fn_str(), "hme") != NULL;
|
||||
#elif defined(__LINUX__) || defined (__FREEBSD__) || defined (__QNX__)
|
||||
#elif defined(__LINUX__) || defined (__FREEBSD__) || defined (__QNX__) || \
|
||||
defined(__OPENBSD__)
|
||||
hasModem = strstr(output.fn_str(),"ppp") // ppp
|
||||
|| strstr(output.fn_str(),"sl") // slip
|
||||
|| strstr(output.fn_str(),"pl"); // plip
|
||||
|
Loading…
Reference in New Issue
Block a user