Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 235DC84D0C for ; Sun, 27 Aug 2023 11:56:27 +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 lpxfPu4nwvJU for ; Sun, 27 Aug 2023 11:56:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7888984CC9 for ; Sun, 27 Aug 2023 11:56:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 70954FBDB; Sun, 27 Aug 2023 11:56:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693137386247390" MIME-Version: 1.0 Date: Sun, 27 Aug 2023 11:56:26 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/mail/mailutils To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230827115626.70954FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693137386247390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Sun Aug 27 11:56:26 UTC 2023 Modified Files: pkgsrc/mail/mailutils: options.mk Log Message: mail/mailutils: fix GSSAPI implementation detection. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/mailutils/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693137386247390 Content-Disposition: inline Content-Length: 843 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/mailutils/options.mk diff -u pkgsrc/mail/mailutils/options.mk:1.1 pkgsrc/mail/mailutils/options.mk:1.2 --- pkgsrc/mail/mailutils/options.mk:1.1 Thu Dec 15 13:58:02 2022 +++ pkgsrc/mail/mailutils/options.mk Sun Aug 27 11:56:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2022/12/15 13:58:02 vins Exp $ +# $NetBSD: options.mk,v 1.2 2023/08/27 11:56:26 vins Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mailutils @@ -64,9 +64,9 @@ CONFIGURE_ARGS+= --without-libintl-prefi .if !empty(PKG_OPTIONS:Mgssapi) . include "../../mk/krb5.buildlink3.mk" CONFIGURE_ARGS+= --with-gssapi==${KRB5BASE:Q} +GSSIMPL.heimdal= Heimdal +GSSIMPL.mit-krb5= MIT CONFIGURE_ENV+= GSSAPI_IMPL=${GSSIMPL.${KRB5_TYPE}} -GSSIMPL.heimdal= heimdal -GSSIMPL.mit-krb5= mit .else CONFIGURE_ARGS+= --without-gssapi .endif --_----------=_1693137386247390--