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 DE8BB7A21A for ; Mon, 15 May 2017 13:20:46 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8C793856BB; Mon, 15 May 2017 13:20:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1DCD8856B2 for ; Mon, 15 May 2017 13:20:46 +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 2phMOnxAwm2H for ; Mon, 15 May 2017 13:20:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7EF9084CDE for ; Mon, 15 May 2017 13:20:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79A26FBE4; Mon, 15 May 2017 13:20:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1494854445133170" MIME-Version: 1.0 Date: Mon, 15 May 2017 13:20:45 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/security/gnupg21 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170515132045.79A26FBE4@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. --_----------=_1494854445133170 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:20:45 UTC 2017 Modified Files: pkgsrc/security/gnupg21: Makefile Log Message: Requires gettext-lib. SunOS needs an explicit -lintl. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/security/gnupg21/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1494854445133170 Content-Disposition: inline Content-Length: 884 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gnupg21/Makefile diff -u pkgsrc/security/gnupg21/Makefile:1.29 pkgsrc/security/gnupg21/Makefile:1.30 --- pkgsrc/security/gnupg21/Makefile:1.29 Sat Apr 22 21:03:55 2017 +++ pkgsrc/security/gnupg21/Makefile Mon May 15 13:20:45 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2017/04/22 21:03:55 adam Exp $ +# $NetBSD: Makefile,v 1.30 2017/05/15 13:20:45 jperkin Exp $ DISTNAME= gnupg-2.1.20 PKGNAME= ${DISTNAME:S/gnupg-/gnupg21-/} @@ -32,10 +32,11 @@ TEST_TARGET= check CONFIGURE_ARGS.SunOS+= ac_cv_func_getaddrinfo=yes LDFLAGS.Darwin+= -lresolv -LDFLAGS.SunOS+= -lsocket +LDFLAGS.SunOS+= -lintl -lsocket .include "options.mk" +.include "../../devel/gettext-lib/buildlink3.mk" BUILDLINK_API_DEPENDS.libgcrypt+= libgcrypt>=1.7 .include "../../security/libgcrypt/buildlink3.mk" .include "../../databases/sqlite3/buildlink3.mk" --_----------=_1494854445133170--