Received: by mail.netbsd.org (Postfix, from userid 605) id B94CA84DDC; Thu, 26 Mar 2020 02:36:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 43C6684DDA for ; Thu, 26 Mar 2020 02:36:03 +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 5MsSu3t81gGB for ; Thu, 26 Mar 2020 02:36:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4B20984CD5 for ; Thu, 26 Mar 2020 02:36:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 48D8FFB27; Thu, 26 Mar 2020 02:36:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158519016292780" MIME-Version: 1.0 Date: Thu, 26 Mar 2020 02:36:02 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/editors/abiword To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200326023602.48D8FFB27@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. --_----------=_158519016292780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu Mar 26 02:36:02 UTC 2020 Modified Files: pkgsrc/editors/abiword: distinfo Added Files: pkgsrc/editors/abiword/patches: patch-src_wp_ap_gtk_ap__UnixApp.cpp Log Message: Avoid C++11 UDL To generate a diff of this commit: cvs rdiff -u -r1.80 -r1.81 pkgsrc/editors/abiword/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158519016292780 Content-Disposition: inline Content-Length: 1832 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/abiword/distinfo diff -u pkgsrc/editors/abiword/distinfo:1.80 pkgsrc/editors/abiword/distinfo:1.81 --- pkgsrc/editors/abiword/distinfo:1.80 Wed Nov 27 16:01:09 2019 +++ pkgsrc/editors/abiword/distinfo Thu Mar 26 02:36:02 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.80 2019/11/27 16:01:09 nia Exp $ +$NetBSD: distinfo,v 1.81 2020/03/26 02:36:02 joerg Exp $ SHA1 (abiword-3.0.4.tar.gz) = eb6c18e649fe8ca185c8d09f2c7869a27c9942db RMD160 (abiword-3.0.4.tar.gz) = cd7eaf6c89b44f094c70b1700158b3ef2844c5a4 @@ -27,3 +27,4 @@ SHA1 (patch-src_af_util_xp_ut__mbtowc.cp SHA1 (patch-src_af_util_xp_ut__misc.cpp) = f552ecbb87490355d8e74218dd59fd3961f1af5d SHA1 (patch-src_af_xap_xp_enchant__checker.cpp) = 5ad3b8bb4e186e998d7e8930247534c9f058c534 SHA1 (patch-src_text_fmt_xp_fv__FrameEdit.h) = 684310bf9aece4ce72d004dfae9a4b4b6ca69570 +SHA1 (patch-src_wp_ap_gtk_ap__UnixApp.cpp) = 0269d41c71db3501afc0f06ba1d21cd68f3f9304 Added files: Index: pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp diff -u /dev/null pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp:1.1 --- /dev/null Thu Mar 26 02:36:02 2020 +++ pkgsrc/editors/abiword/patches/patch-src_wp_ap_gtk_ap__UnixApp.cpp Thu Mar 26 02:36:02 2020 @@ -0,0 +1,13 @@ +$NetBSD: patch-src_wp_ap_gtk_ap__UnixApp.cpp,v 1.1 2020/03/26 02:36:02 joerg Exp $ + +--- src/wp/ap/gtk/ap_UnixApp.cpp.orig 2020-03-25 14:42:03.508260820 +0000 ++++ src/wp/ap/gtk/ap_UnixApp.cpp +@@ -863,7 +863,7 @@ static bool is_so (const char *file) { + if (len < (strlen(G_MODULE_SUFFIX) + 2)) // this is ".so" and at least one char for the filename + return false; + const char *suffix = file+(len-3); +- if(0 == strcmp (suffix, "."G_MODULE_SUFFIX)) ++ if(0 == strcmp (suffix, "." G_MODULE_SUFFIX)) + return true; + return false; + } --_----------=_158519016292780--