Hello community,

here is the log from the commit of package krdc for openSUSE:Factory checked in 
at 2014-02-20 07:57:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/krdc (Old)
 and      /work/SRC/openSUSE:Factory/.krdc.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "krdc"

Changes:
--------
--- /work/SRC/openSUSE:Factory/krdc/krdc.changes        2014-01-27 
11:18:55.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.krdc.new/krdc.changes   2014-02-20 
07:58:33.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Feb  1 10:39:30 UTC 2014 - [email protected]
+
+- Update to 4.12.2
+   * KDE 4.12.2  release
+   * See http://www.kde.org/announcements/announce-4.12.2.php
+
+-------------------------------------------------------------------

Old:
----
  krdc-4.12.1.tar.xz

New:
----
  krdc-4.12.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ krdc.spec ++++++
--- /var/tmp/diff_new_pack.WwZ3eQ/_old  2014-02-20 07:58:34.000000000 +0100
+++ /var/tmp/diff_new_pack.WwZ3eQ/_new  2014-02-20 07:58:34.000000000 +0100
@@ -25,7 +25,7 @@
 BuildRequires:  pkgconfig(TelepathyQt4)
 %endif
 BuildRequires:  oxygen-icon-theme-large
-Version:        4.12.1
+Version:        4.12.2
 Release:        0
 Summary:        Remote Desktop Connection
 License:        GPL-2.0+

++++++ krdc-4.12.1.tar.xz -> krdc-4.12.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-4.12.1/mainwindow.cpp 
new/krdc-4.12.2/mainwindow.cpp
--- old/krdc-4.12.1/mainwindow.cpp      2013-11-27 21:36:28.000000000 +0100
+++ new/krdc-4.12.2/mainwindow.cpp      2014-01-27 23:52:13.000000000 +0100
@@ -334,6 +334,7 @@
     connect(view, SIGNAL(statusChanged(RemoteView::RemoteStatus)), this, 
SLOT(statusChanged(RemoteView::RemoteStatus)));
     connect(view, SIGNAL(disconnected()), this, SLOT(disconnectHost()));
 
+    view->winId();  // native widget workaround for bug 253365
     QScrollArea *scrollArea = createScrollArea(m_tabWidget, view);
 
     const int indexOfNewConnectionWidget = 
m_tabWidget->indexOf(m_newConnectionWidget);
@@ -668,8 +669,8 @@
         return;
 
     const QString url = index.data(10001).toString();
-    const QString title = m_remoteDesktopsModel->index(index.row(), 
RemoteDesktopsModel::Title).data(Qt::DisplayRole).toString();
-    const QString source = m_remoteDesktopsModel->index(index.row(), 
RemoteDesktopsModel::Source).data(Qt::DisplayRole).toString();
+    const QString title = index.model()->index(index.row(), 
RemoteDesktopsModel::Title).data(Qt::DisplayRole).toString();
+    const QString source = index.model()->index(index.row(), 
RemoteDesktopsModel::Source).data(Qt::DisplayRole).toString();
 
     KMenu *menu = new KMenu(m_newConnectionTableView);
     menu->addTitle(url);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/krdc-4.12.1/vnc/vncclientthread.cpp 
new/krdc-4.12.2/vnc/vncclientthread.cpp
--- old/krdc-4.12.1/vnc/vncclientthread.cpp     2013-11-27 21:36:28.000000000 
+0100
+++ new/krdc-4.12.2/vnc/vncclientthread.cpp     2014-01-27 23:52:13.000000000 
+0100
@@ -24,7 +24,10 @@
 #include "vncclientthread.h"
 
 #include <cerrno>
+#include <netinet/in.h>
 #include <netinet/tcp.h>
+#include <sys/types.h>
+#include <sys/socket.h>
 #include <QMutexLocker>
 #include <QThreadStorage>
 #include <QTimer>
@@ -604,19 +607,19 @@
     }
 
     optval = m_keepalive.intervalSeconds;
-    if (setsockopt(cl->sock, SOL_TCP, TCP_KEEPIDLE, &optval, optlen) < 0) {
+    if (setsockopt(cl->sock, IPPROTO_TCP, TCP_KEEPIDLE, &optval, optlen) < 0) {
         kError(5011) << "setsockopt(TCP_KEEPIDLE)" << strerror(errno);
         return;
     }
 
     optval = m_keepalive.intervalSeconds;
-    if (setsockopt(cl->sock, SOL_TCP, TCP_KEEPINTVL, &optval, optlen) < 0) {
+    if (setsockopt(cl->sock, IPPROTO_TCP, TCP_KEEPINTVL, &optval, optlen) < 0) 
{
         kError(5011) << "setsockopt(TCP_KEEPINTVL)" << strerror(errno);
         return;
     }
 
     optval = m_keepalive.failedProbes;
-    if(setsockopt(cl->sock, SOL_TCP, TCP_KEEPCNT, &optval, optlen) < 0) {
+    if(setsockopt(cl->sock, IPPROTO_TCP, TCP_KEEPCNT, &optval, optlen) < 0) {
         kError(5011) << "setsockopt(TCP_KEEPCNT)" << strerror(errno);
         return;
     }

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to