From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E65D1138A1A for ; Sun, 15 Feb 2015 04:48:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8ED5E0940; Sun, 15 Feb 2015 04:48:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50384E0940 for ; Sun, 15 Feb 2015 04:48:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3364F3406D0 for ; Sun, 15 Feb 2015 04:48:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A32C511C95 for ; Sun, 15 Feb 2015 04:48:51 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1423884401.3013c8e7ab5aee1fa45a0fa6d662b37d08698530.vapier@gentoo> Subject: [gentoo-commits] proj/pambase:master commit in: / X-VCS-Repository: proj/pambase X-VCS-Files: Makefile login.in X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 3013c8e7ab5aee1fa45a0fa6d662b37d08698530 X-VCS-Branch: master Date: Sun, 15 Feb 2015 04:48:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 17b6d022-3b98-4e97-a8e0-a10952b64f38 X-Archives-Hash: 2260acb3b8d85fe646771752bbffb36e commit: 3013c8e7ab5aee1fa45a0fa6d662b37d08698530 Author: Mike Frysinger gentoo org> AuthorDate: Sat Feb 14 03:26:41 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Feb 14 03:26:41 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/pambase.git;a=commit;h=3013c8e7 make securetty optional URL: https://bugs.gentoo.org/539508 --- Makefile | 4 ++++ login.in | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 574d0d1..339de62 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,10 @@ ifeq "$(GNOME_KEYRING)" "yes" PAMFLAGS += -DHAVE_GNOME_KEYRING=1 endif +ifeq "$(SECURETTY)" "yes" +PAMFLAGS += -DHAVE_SECURETTY=1 +endif + ifeq "$(SELINUX)" "yes" PAMFLAGS += -DHAVE_SELINUX=1 endif diff --git a/login.in b/login.in index 14165a2..5067bc7 100644 --- a/login.in +++ b/login.in @@ -1,4 +1,6 @@ +#if HAVE_SECURETTY auth required pam_securetty.so +#endif auth include system-local-login account include system-local-login