diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2006-03-31 20:24:49 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2006-03-31 20:24:49 +0000 |
commit | bb6f122a199c301d2711a78b6b40e2afcb30ba83 (patch) | |
tree | 5c89487dca9149153b3b8206ea56f8585f5d058c /net/kdenetwork3 | |
parent | Fix build with gcc41. (diff) |
Prevent kopete's connection status plugin to cause connection flip-flopping
on IPv6-enabled machines.
Reminded by: lioux
Notes
Notes:
svn path=/head/; revision=158490
Diffstat (limited to 'net/kdenetwork3')
-rw-r--r-- | net/kdenetwork3/Makefile | 1 | ||||
-rw-r--r-- | net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile index 1ef09fed07a1..ba391a21412c 100644 --- a/net/kdenetwork3/Makefile +++ b/net/kdenetwork3/Makefile @@ -8,6 +8,7 @@ PORTNAME= kdenetwork PORTVERSION= ${KDE_VERSION} +PORTREVISION= 1 CATEGORIES?= net kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src diff --git a/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp b/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp new file mode 100644 index 000000000000..42f34cb3d5be --- /dev/null +++ b/net/kdenetwork3/files/patch-kopete_plugins_connectionstatus-connectionstatus.cpp @@ -0,0 +1,11 @@ +--- kopete/plugins/connectionstatus/connectionstatusplugin.cpp.orig Fri Mar 31 22:12:59 2006 ++++ kopete/plugins/connectionstatus/connectionstatusplugin.cpp Fri Mar 31 22:14:53 2006 +@@ -65,7 +65,7 @@ + // netstat -rn in slotProcessStdout() to see if it mentions the + // default gateway. If so, we're connected, if not, we're offline + m_process = new KProcess; +- *m_process << "netstat" << "-r"; ++ *m_process << "netstat" << "-rfinet"; + + connect( m_process, SIGNAL( receivedStdout( KProcess *, char *, int ) ), this, SLOT( slotProcessStdout( KProcess *, char *, int ) ) ); + connect( m_process, SIGNAL( processExited( KProcess * ) ), this, SLOT( slotProcessExited( KProcess * ) ) ); |