Received: by mail.netbsd.org (Postfix, from userid 605) id 5E57984DD5; Thu, 21 May 2020 10:11:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DAFB984DD2 for ; Thu, 21 May 2020 10:11:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id idpj0w-aFT4u for ; Thu, 21 May 2020 10:11:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4249D84D2E for ; Thu, 21 May 2020 10:11:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C31CFB27; Thu, 21 May 2020 10:11:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1590055883259380" MIME-Version: 1.0 Date: Thu, 21 May 2020 10:11:23 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/freerdp2/patches To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200521101123.3C31CFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1590055883259380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu May 21 10:11:23 UTC 2020 Added Files: pkgsrc/net/freerdp2/patches: patch-channels_rdpdr_client_rdpdr__main.c Log Message: freerdp2: Missing patch To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \ pkgsrc/net/freerdp2/patches/patch-channels_rdpdr_client_rdpdr__main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1590055883259380 Content-Disposition: inline Content-Length: 1023 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/net/freerdp2/patches/patch-channels_rdpdr_client_rdpdr__main.c diff -u /dev/null pkgsrc/net/freerdp2/patches/patch-channels_rdpdr_client_rdpdr__main.c:1.1 --- /dev/null Thu May 21 10:11:23 2020 +++ pkgsrc/net/freerdp2/patches/patch-channels_rdpdr_client_rdpdr__main.c Thu May 21 10:11:23 2020 @@ -0,0 +1,24 @@ +$NetBSD: patch-channels_rdpdr_client_rdpdr__main.c,v 1.1 2020/05/21 10:11:23 nia Exp $ + +NetBSD does not have mntent + +--- channels/rdpdr/client/rdpdr_main.c.orig 2020-05-08 09:40:17.000000000 +0000 ++++ channels/rdpdr/client/rdpdr_main.c +@@ -111,7 +111,7 @@ static UINT rdpdr_send_device_list_remov + return rdpdr_send(rdpdr, s); + } + +-#if defined(_UWP) || defined(__IOS__) ++#if defined(_UWP) || defined(__IOS__) || defined(__NetBSD__) + + void first_hotplug(rdpdrPlugin* rdpdr) + { +@@ -844,7 +844,7 @@ out: + + #endif + +-#if !defined(_WIN32) && !defined(__IOS__) ++#if !defined(_WIN32) && !defined(__IOS__) && !defined(__NetBSD__) + /** + * Function description + * --_----------=_1590055883259380--