Received: by mail.netbsd.org (Postfix, from userid 605) id 650B084DAC; Sat, 1 Jul 2017 22:14:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 75E6584D7F for ; Sat, 1 Jul 2017 22:14:43 +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 MotvjjkRGEip for ; Sat, 1 Jul 2017 22:14:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D8B7084C86 for ; Sat, 1 Jul 2017 22:14:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D5CCEFAE8; Sat, 1 Jul 2017 22:14:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1498947282102760" MIME-Version: 1.0 Date: Sat, 1 Jul 2017 22:14:42 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/www/SOGo3 To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170701221442.D5CCEFAE8@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. --_----------=_1498947282102760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sat Jul 1 22:14:42 UTC 2017 Modified Files: pkgsrc/www/SOGo3: distinfo Added Files: pkgsrc/www/SOGo3/patches: patch-SoObjects_SOGo_NSData+Crypto.m Log Message: Expect crypt(3) to be provided by unistd.h, not the ancient crypt.h. Fix standard visibility macro use. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/SOGo3/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/www/SOGo3/patches/patch-SoObjects_SOGo_NSData+Crypto.m Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1498947282102760 Content-Disposition: inline Content-Length: 1667 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/SOGo3/distinfo diff -u pkgsrc/www/SOGo3/distinfo:1.2 pkgsrc/www/SOGo3/distinfo:1.3 --- pkgsrc/www/SOGo3/distinfo:1.2 Sat Jun 10 22:04:15 2017 +++ pkgsrc/www/SOGo3/distinfo Sat Jul 1 22:14:42 2017 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2017/06/10 22:04:15 wiedi Exp $ +$NetBSD: distinfo,v 1.3 2017/07/01 22:14:42 joerg Exp $ SHA1 (SOGo-3.2.9.tar.gz) = f7b9e129f242c6bbf2d3ed2630932302ca409274 RMD160 (SOGo-3.2.9.tar.gz) = 7a4dcdb52bdd2fbfd85f784d9600258ea95a7c72 SHA512 (SOGo-3.2.9.tar.gz) = 4fbda8a0aa275ce4d6e26a4ebd73d981d7c54bd7dee705a742747fc23483594fe490c034f1d2d6e232fa3437a033e1a2305e2c33f0317d42487831005a20ef57 Size (SOGo-3.2.9.tar.gz) = 32557925 bytes +SHA1 (patch-SoObjects_SOGo_NSData+Crypto.m) = 48f43d7919100f08d00749b66863b47f1693e84a Added files: Index: pkgsrc/www/SOGo3/patches/patch-SoObjects_SOGo_NSData+Crypto.m diff -u /dev/null pkgsrc/www/SOGo3/patches/patch-SoObjects_SOGo_NSData+Crypto.m:1.1 --- /dev/null Sat Jul 1 22:14:42 2017 +++ pkgsrc/www/SOGo3/patches/patch-SoObjects_SOGo_NSData+Crypto.m Sat Jul 1 22:14:42 2017 @@ -0,0 +1,22 @@ +$NetBSD: patch-SoObjects_SOGo_NSData+Crypto.m,v 1.1 2017/07/01 22:14:42 joerg Exp $ + +--- SoObjects/SOGo/NSData+Crypto.m.orig 2017-07-01 20:55:22.227865760 +0000 ++++ SoObjects/SOGo/NSData+Crypto.m +@@ -23,16 +23,11 @@ + * Boston, MA 02111-1307, USA. + */ + +-#if !defined(__OpenBSD__) && !defined(__FreeBSD__) +-#include +-#endif ++#define _XOPEN_SOURCE 1 + + #include + #include + +-#define _XOPEN_SOURCE 1 +-#include +- + #if defined(HAVE_GNUTLS) + #include + #include --_----------=_1498947282102760--