Received: by mail.netbsd.org (Postfix, from userid 605) id D621384E57; Fri, 20 Mar 2020 10:25:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5CC2C84D3C for ; Fri, 20 Mar 2020 10:25:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id rnm8XVLNOiFC for ; Fri, 20 Mar 2020 10:25:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DA21B84D20 for ; Fri, 20 Mar 2020 10:25:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CE01BFB27; Fri, 20 Mar 2020 10:25:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158469991573550" MIME-Version: 1.0 Date: Fri, 20 Mar 2020 10:25:15 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/news/tin To: pkgsrc-changes@NetBSD.org Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20200320102515.CE01BFB27@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. --_----------=_158469991573550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Fri Mar 20 10:25:15 UTC 2020 Modified Files: pkgsrc/news/tin: distinfo Added Files: pkgsrc/news/tin/patches: patch-pcre_configure.in Log Message: news/tin: Fix build with PKG_DEVELOPER=yes This should fix the bulk build on NetBSD 9.0/aarch64 too. No revision bump, because patch is only for build system. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/news/tin/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/news/tin/patches/patch-pcre_configure.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158469991573550 Content-Disposition: inline Content-Length: 1655 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/news/tin/distinfo diff -u pkgsrc/news/tin/distinfo:1.25 pkgsrc/news/tin/distinfo:1.26 --- pkgsrc/news/tin/distinfo:1.25 Thu Dec 26 21:57:50 2019 +++ pkgsrc/news/tin/distinfo Fri Mar 20 10:25:15 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.25 2019/12/26 21:57:50 leot Exp $ +$NetBSD: distinfo,v 1.26 2020/03/20 10:25:15 micha Exp $ SHA1 (tin-2.4.4.tar.xz) = 7f4c1869cdcac4ac49bb70c6448538691fc19b4a RMD160 (tin-2.4.4.tar.xz) = dbb0b44f3365059f155ec53874d283a18da9e0b1 @@ -7,4 +7,5 @@ Size (tin-2.4.4.tar.xz) = 1545016 bytes SHA1 (patch-Makefile) = 7f9048d31e70d9630ba6511d834db5d0c60a7de1 SHA1 (patch-configure) = 02f6c943c7e6cbf8552f163c8ff4922413c9c340 SHA1 (patch-include_tin.h) = 75a933e15128e7e102598c311ff292caf9c49041 +SHA1 (patch-pcre_configure.in) = c062b56be504eef7526c6d7cec0bf619930dc67c SHA1 (patch-src_Makefile.in) = 412f1cd6b01618e64d6a3f713f3758d5a563e79e Added files: Index: pkgsrc/news/tin/patches/patch-pcre_configure.in diff -u /dev/null pkgsrc/news/tin/patches/patch-pcre_configure.in:1.1 --- /dev/null Fri Mar 20 10:25:15 2020 +++ pkgsrc/news/tin/patches/patch-pcre_configure.in Fri Mar 20 10:25:15 2020 @@ -0,0 +1,15 @@ +$NetBSD: patch-pcre_configure.in,v 1.1 2020/03/20 10:25:15 micha Exp $ + +Replace nonportable operator "==" with POSIX equivalent. + +--- pcre/configure.in.orig 2017-05-03 17:47:33.000000000 +0000 ++++ pcre/configure.in +@@ -183,7 +183,7 @@ dnl Handle --enable-ebcdic + + AC_ARG_ENABLE(ebcdic, + [ --enable-ebcdic assume EBCDIC coding rather than ASCII], +-if test "$enableval" == "yes"; then ++if test "$enableval" = "yes"; then + EBCDIC=-DEBCDIC=1 + fi + ) --_----------=_158469991573550--