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 2E2597A212 for ; Mon, 15 May 2017 13:07:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8FB89856C3; Mon, 15 May 2017 13:06:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1F559856BF for ; Mon, 15 May 2017 13:06:49 +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 V7Low4EKiLYb for ; Mon, 15 May 2017 13:06:48 +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 A3BB9856B2 for ; Mon, 15 May 2017 13:06:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 99985FBE4; Mon, 15 May 2017 13:06:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1494853608140050" MIME-Version: 1.0 Date: Mon, 15 May 2017 13:06:48 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mail/courier-mta To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170515130648.99985FBE4@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. --_----------=_1494853608140050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon May 15 13:06:48 UTC 2017 Modified Files: pkgsrc/mail/courier-mta: distinfo Added Files: pkgsrc/mail/courier-mta/patches: patch-courier_module.esmtp_esmtpclient.c Log Message: Add compatibility define for SOL_TCP. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/mail/courier-mta/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/mail/courier-mta/patches/patch-courier_module.esmtp_esmtpclient.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1494853608140050 Content-Disposition: inline Content-Length: 1805 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/courier-mta/distinfo diff -u pkgsrc/mail/courier-mta/distinfo:1.20 pkgsrc/mail/courier-mta/distinfo:1.21 --- pkgsrc/mail/courier-mta/distinfo:1.20 Tue Nov 3 23:27:02 2015 +++ pkgsrc/mail/courier-mta/distinfo Mon May 15 13:06:48 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.20 2015/11/03 23:27:02 agc Exp $ +$NetBSD: distinfo,v 1.21 2017/05/15 13:06:48 jperkin Exp $ SHA1 (courier-0.68.1.tar.bz2) = fbd7cd0bc88876dc12d02b9404cea95877805ebe RMD160 (courier-0.68.1.tar.bz2) = 3f062aae0d34a71055a5ff5ad172ca191ab3f0e4 @@ -21,4 +21,5 @@ SHA1 (patch-ay) = d4b391e76167cd27012f92 SHA1 (patch-courier_cdfilters.C) = 1f9169de45355cd9a4ecb7e8ddac30df05d368d0 SHA1 (patch-courier_cdmsgq.C) = 467479ded922cfff97c4e5876a5234eef3f82b50 SHA1 (patch-courier_cmlmfetch.C) = 7426b5642271a8bcd4ed442eb6571d191a454d1f +SHA1 (patch-courier_module.esmtp_esmtpclient.c) = 54f66d60e1d5e444725630ae31c47554ab421609 SHA1 (patch-courier_webmlmd.H) = 3a66894c376bf84ae5a43f4c6f3dfbb687f9436e Added files: Index: pkgsrc/mail/courier-mta/patches/patch-courier_module.esmtp_esmtpclient.c diff -u /dev/null pkgsrc/mail/courier-mta/patches/patch-courier_module.esmtp_esmtpclient.c:1.1 --- /dev/null Mon May 15 13:06:48 2017 +++ pkgsrc/mail/courier-mta/patches/patch-courier_module.esmtp_esmtpclient.c Mon May 15 13:06:48 2017 @@ -0,0 +1,16 @@ +$NetBSD: patch-courier_module.esmtp_esmtpclient.c,v 1.1 2017/05/15 13:06:48 jperkin Exp $ + +Compat define for SOL_TCP. + +--- courier/module.esmtp/esmtpclient.c.orig 2012-04-23 17:11:48.000000000 +0000 ++++ courier/module.esmtp/esmtpclient.c +@@ -79,6 +79,9 @@ static time_t quit_timeout; + static time_t data_timeout; + + #ifdef TCP_CORK ++#ifndef SOL_TCP ++#define SOL_TCP IPPROTO_TCP ++#endif + + static int esmtp_cork; + static int corked; --_----------=_1494853608140050--