Received: by mail.netbsd.org (Postfix, from userid 605) id CA7BA84E3A; Sat, 30 Mar 2019 05:23:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 50FBB84E36 for ; Sat, 30 Mar 2019 05:23:44 +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 NVKFCTR0S6tV for ; Sat, 30 Mar 2019 05:23:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A9F5184D6E for ; Sat, 30 Mar 2019 05:23:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A48C4FB16; Sat, 30 Mar 2019 05:23:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1553923423116730" MIME-Version: 1.0 Date: Sat, 30 Mar 2019 05:23:43 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/x11/mate-screensaver To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20190330052343.A48C4FB16@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. --_----------=_1553923423116730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sat Mar 30 05:23:43 UTC 2019 Modified Files: pkgsrc/x11/mate-screensaver: Makefile Log Message: mate-screensaver: build fix for Linux Extend non-PAM coverage to Linux. security/pam-pwauth_suid has BSDisms in it that don't build on Linux. Someone may want to revisit this later and alter support here, but that's not something to apply during a freeze, anyway. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/x11/mate-screensaver/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1553923423116730 Content-Disposition: inline Content-Length: 798 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/mate-screensaver/Makefile diff -u pkgsrc/x11/mate-screensaver/Makefile:1.16 pkgsrc/x11/mate-screensaver/Makefile:1.17 --- pkgsrc/x11/mate-screensaver/Makefile:1.16 Wed Jan 16 18:11:05 2019 +++ pkgsrc/x11/mate-screensaver/Makefile Sat Mar 30 05:23:43 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2019/01/16 18:11:05 youri Exp $ +# $NetBSD: Makefile,v 1.17 2019/03/30 05:23:43 gutteridge Exp $ .include "../../meta-pkgs/mate/Makefile.common" @@ -27,7 +27,7 @@ CONF_FILES+= ${PREFIX}/share/examples/ma PLIST_VARS+= pam -.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" +.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" || ${OPSYS} == "Linux" CONFIGURE_ARGS+= --disable-pam SPECIAL_PERMS+= libexec/mate-screensaver-dialog ${SETUID_ROOT_PERMS} .else --_----------=_1553923423116730--