Received: by mail.netbsd.org (Postfix, from userid 605) id 92C6C84D7C; Mon, 4 Jun 2018 12:48:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 14CFC84CEF for ; Mon, 4 Jun 2018 12:48:39 +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 m4M2BdnZ4ezR for ; Mon, 4 Jun 2018 12:48:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4603884C82 for ; Mon, 4 Jun 2018 12:48:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 12A13FBEC; Mon, 4 Jun 2018 12:45:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1528116348127800" MIME-Version: 1.0 Date: Mon, 4 Jun 2018 12:45:48 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/security/gnutls To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20180604124548.12A13FBEC@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. --_----------=_1528116348127800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Mon Jun 4 12:45:48 UTC 2018 Modified Files: pkgsrc/security/gnutls: Makefile Log Message: gnutls: Fix build if devel/autogen package is installed Without including the autogen bl3 if devel/autogen package was installed autogen (the tool) was used but then the build failed because it tried to include unconditionally. Add `--enable-local-libopts' to CONFIGURE_ARGS to avoid that. To generate a diff of this commit: cvs rdiff -u -r1.180 -r1.181 pkgsrc/security/gnutls/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1528116348127800 Content-Disposition: inline Content-Length: 851 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gnutls/Makefile diff -u pkgsrc/security/gnutls/Makefile:1.180 pkgsrc/security/gnutls/Makefile:1.181 --- pkgsrc/security/gnutls/Makefile:1.180 Mon Jun 4 11:16:12 2018 +++ pkgsrc/security/gnutls/Makefile Mon Jun 4 12:45:47 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.180 2018/06/04 11:16:12 youri Exp $ +# $NetBSD: Makefile,v 1.181 2018/06/04 12:45:47 leot Exp $ DISTNAME= gnutls-3.6.0 PKGREVISION= 2 @@ -23,6 +23,7 @@ CONFIGURE_ARGS+= --disable-libdane CONFIGURE_ARGS+= --without-tpm CONFIGURE_ARGS+= --disable-valgrind-tests CONFIGURE_ARGS+= --with-libintl-prefix=${BUILDLINK_PREFIX.gettext} +CONFIGURE_ARGS+= --enable-local-libopts # Assembler support is broken for SunOS in 3.2.9. CONFIGURE_ARGS.SunOS+= --disable-hardware-acceleration CONFIGURE_ARGS.FreeBSD+= ac_cv_type_max_align_t=yes --_----------=_1528116348127800--