Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id F3C027A217 for ; Wed, 5 Oct 2016 12:39:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6E3B785ED8; Wed, 5 Oct 2016 12:39:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F266085ED2 for ; Wed, 5 Oct 2016 12:39:57 +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 ra6hCv3s4rsr for ; Wed, 5 Oct 2016 12:39:57 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 83EF785E00 for ; Wed, 5 Oct 2016 12:39:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7EBF1FBD2; Wed, 5 Oct 2016 12:39:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1475671197223350" MIME-Version: 1.0 Date: Wed, 5 Oct 2016 12:39:57 +0000 From: "Stephen Borrill" Subject: CVS commit: pkgsrc/mail/dovecot2 To: pkgsrc-changes@NetBSD.org Reply-To: sborrill@netbsd.org X-Mailer: log_accum Message-Id: <20161005123957.7EBF1FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1475671197223350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sborrill Date: Wed Oct 5 12:39:57 UTC 2016 Modified Files: pkgsrc/mail/dovecot2: distinfo Added Files: pkgsrc/mail/dovecot2/patches: patch-configure Log Message: Fix static array check in configure. Patch will be in next dovecot release, so can be removed after that. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 pkgsrc/mail/dovecot2/distinfo cvs rdiff -u -r0 -r1.4 pkgsrc/mail/dovecot2/patches/patch-configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1475671197223350 Content-Disposition: inline Content-Length: 1846 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/dovecot2/distinfo diff -u pkgsrc/mail/dovecot2/distinfo:1.65 pkgsrc/mail/dovecot2/distinfo:1.66 --- pkgsrc/mail/dovecot2/distinfo:1.65 Wed Jul 6 10:39:22 2016 +++ pkgsrc/mail/dovecot2/distinfo Wed Oct 5 12:39:57 2016 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.65 2016/07/06 10:39:22 adam Exp $ +$NetBSD: distinfo,v 1.66 2016/10/05 12:39:57 sborrill Exp $ SHA1 (dovecot-2.2.25.tar.gz) = 7fd23e4fef4f6f25a43196d36686449d6515f2b8 RMD160 (dovecot-2.2.25.tar.gz) = 4e6494326b15bb1205e927ac227974575707808d @@ -8,6 +8,7 @@ SHA1 (patch-aa) = ea185011f0c1ee3aa1ff52 SHA1 (patch-ab) = d637a64feec8e4eafacda149cf0193aa1b70a054 SHA1 (patch-ae) = 51d8cb998cc2ded8bfc767710e465b752c50e656 SHA1 (patch-af) = c066e94dd6593d16eec3e66f5f4d26f021918498 +SHA1 (patch-configure) = 89a64ba84a94d9d93144d1bd224852c24d050be3 SHA1 (patch-src_lib-ldap_ldap-private.h) = 2d5ce32330ad4164cc75f8d209ba499d37ed01fc SHA1 (patch-src_lib_buffer.h) = d75017a1093c1ca34827d01ec85b06e6b03105d2 SHA1 (patch-src_master_service-listen.c) = 58351083d928206e67bff3ae88a67556d6b43711 Added files: Index: pkgsrc/mail/dovecot2/patches/patch-configure diff -u /dev/null pkgsrc/mail/dovecot2/patches/patch-configure:1.4 --- /dev/null Wed Oct 5 12:39:57 2016 +++ pkgsrc/mail/dovecot2/patches/patch-configure Wed Oct 5 12:39:57 2016 @@ -0,0 +1,17 @@ +$NetBSD: patch-configure,v 1.4 2016/10/05 12:39:57 sborrill Exp $ + +configure: Fix static array check + +https://github.com/dovecot/core/commit/d9c865ce774aae9f2f17b89e7e94c3cfca29dea7 + +--- configure.orig 2016-10-05 12:03:18.000000000 +0100 ++++ configure 2016-10-05 12:03:30.000000000 +0100 +@@ -21188,7 +21188,7 @@ + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +- void foo(int arr[static 20]); ++ void foo(unsigned char[static 20]); + + int + main () --_----------=_1475671197223350--