From owner-freebsd-ports@FreeBSD.ORG Thu Apr 21 21:08:55 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B688616A4CE; Thu, 21 Apr 2005 21:08:55 +0000 (GMT) Received: from tethys.ringofsaturn.com (tethys.ringofsaturn.com [64.81.112.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F0C843D1D; Thu, 21 Apr 2005 21:08:55 +0000 (GMT) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: from tethys.ringofsaturn.com (localhost [127.0.0.1]) j3LL8sOV029202; Thu, 21 Apr 2005 16:08:54 -0500 (CDT) (envelope-from rnejdl@tethys.ringofsaturn.com) Received: (from rnejdl@localhost) by tethys.ringofsaturn.com (8.13.3/8.13.3/Submit) id j3LL8r8F029200; Thu, 21 Apr 2005 16:08:53 -0500 (CDT) (envelope-from rnejdl) Date: Thu, 21 Apr 2005 16:08:53 -0500 From: Rusty Nejdl To: Michael Nottebrock Message-ID: <20050421210853.GA90412@tethys.ringofsaturn.com> References: <1345.12.148.147.242.1114100692.squirrel@mail.ringofsaturn.com> <200504212109.27221.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline In-Reply-To: <200504212109.27221.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.2.1i X-State: Dazed X-Virus-Scanned: ClamAV 0.83/845/Wed Apr 20 22:37:59 2005 on tethys.ringofsaturn.com X-Virus-Status: Clean cc: ports@freebsd.org cc: kde@freebsd.org Subject: Re: [kde-freebsd] FreeBSD Port kdenetwork3-3.4.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Apr 2005 21:08:55 -0000 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Michael, I've never done this before, so I just had a big learning experience. I think that this works correctly as the port now generates this executable correctly. Rusty Nejdl Michael Nottebrock(michaelnottebrock) wrote: > On Thursday, 21. April 2005 18:24, Rusty Nejdl wrote: > > > If you guys could put a patch into the kdenetwork3 port for this, that > > would be completely appreciated. > > Could you provide one? > > -- > ,_, | Michael Nottebrock | lofi@freebsd.org > (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org > \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-krdpview.cpp" --- krdc/rdp/krdpview.cpp.orig Thu Feb 3 16:52:10 2005 +++ krdc/rdp/krdpview.cpp Thu Apr 21 14:37:11 2005 @@ -210,8 +210,8 @@ if(!m_user.isEmpty()) { *m_process << "-u" << m_user; } if(!m_password.isEmpty()) { *m_process << "-p" << m_password; } *m_process << "-X" << ("0x" + QString::number(m_container->winId(), 16)); - *m_process << (m_host + ":" + QString::number(m_port)); *m_process << "-a" << QString::number(hp->colorDepth()); + *m_process << (m_host + ":" + QString::number(m_port)); connect(m_process, SIGNAL(processExited(KProcess *)), SLOT(processDied(KProcess *))); connect(m_process, SIGNAL(receivedStderr(KProcess *, char *, int)), SLOT(receivedStderr(KProcess *, char *, int))); connect(m_container, SIGNAL(embeddedWindowDestroyed()), SLOT(connectionClosed())); --ZGiS0Q5IWpPtfppv--