summaryrefslogtreecommitdiff
path: root/chat/konversation/patches
diff options
context:
space:
mode:
authorwiedi <wiedi@pkgsrc.org>2014-03-12 19:49:02 +0000
committerwiedi <wiedi@pkgsrc.org>2014-03-12 19:49:02 +0000
commit872a401fe1885ce6f5dc92361ebe54ca6337ed11 (patch)
treef23135164f6c5d6bd84d005b3a55bca649498d0a /chat/konversation/patches
parent30f260748033ae3f77609a3703afa2436c6a0741 (diff)
downloadpkgsrc-872a401fe1885ce6f5dc92361ebe54ca6337ed11.tar.gz
Update Konversation from 1.4 to 1.5
Konversation 1.5 adds numerous major features over the previous stable release. Of particular note are support for SASL and client certificate authentication, all-new topic management UI, overhauled authentication UI in the Identities dialog, per-tab spell-checking language settings, user-configurable nick context menu entries, mouse spring-loading on tabs, all-new versions of major bundled scripts and improved Ignore and Watched Nicknames systems. Many under-the-hood changes to improve codec support and general performance, along with the usual slew of bug fixes all over, further sweeten the deal. Full Changelog at: https://projects.kde.org/projects/extragear/network/konversation/repository/revisions/master/entry/ChangeLog
Diffstat (limited to 'chat/konversation/patches')
-rw-r--r--chat/konversation/patches/patch-src_dcc_dcccommon.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/chat/konversation/patches/patch-src_dcc_dcccommon.cpp b/chat/konversation/patches/patch-src_dcc_dcccommon.cpp
new file mode 100644
index 00000000000..dbb5b9dee92
--- /dev/null
+++ b/chat/konversation/patches/patch-src_dcc_dcccommon.cpp
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_dcc_dcccommon.cpp,v 1.1 2014/03/12 19:49:03 wiedi Exp $
+
+Needed for SIOCGIFADDR on SunOS
+--- src/dcc/dcccommon.cpp.orig 2014-01-15 01:53:02.000000000 +0000
++++ src/dcc/dcccommon.cpp
+@@ -27,6 +27,9 @@
+ # include <stropts.h>
+ # endif
+ #endif
++#if defined(__sun)
++#include <sys/sockio.h>
++#endif
+ #include <arpa/inet.h>
+
+ #include <QHostAddress>