571909623f
Successfully tested in a bulk build by landry@ OK steven@, landry@
22 lines
1.2 KiB
Plaintext
22 lines
1.2 KiB
Plaintext
$OpenBSD: patch-src_unix_dialup_cpp,v 1.1 2010/11/02 13:10:52 dcoppa Exp $
|
|
--- src/unix/dialup.cpp.orig Wed Oct 27 16:33:47 2010
|
|
+++ src/unix/dialup.cpp Wed Oct 27 16:35:11 2010
|
|
@@ -681,7 +681,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__)
|
|
// add -l flag
|
|
@@ -722,7 +722,7 @@ wxDialUpManagerImpl::CheckIfconfig()
|
|
// dialup device under SunOS/Solaris
|
|
hasModem = strstr(output.fn_str(),"ipdptp") != (char *)NULL;
|
|
hasLAN = strstr(output.fn_str(), "hme") != (char *)NULL;
|
|
-#elif defined(__LINUX__) || defined (__FREEBSD__)
|
|
+#elif defined(__LINUX__) || defined (__FREEBSD__) || defined(__OPENBSD__)
|
|
hasModem = strstr(output.fn_str(),"ppp") // ppp
|
|
|| strstr(output.fn_str(),"sl") // slip
|
|
|| strstr(output.fn_str(),"pl"); // plip
|