From owner-svn-ports-head@FreeBSD.ORG Fri May 24 13:47:56 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 299B5AE0; Fri, 24 May 2013 13:47:56 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1B052F2F; Fri, 24 May 2013 13:47:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4ODlttX034273; Fri, 24 May 2013 13:47:55 GMT (envelope-from zeising@svn.freebsd.org) Received: (from zeising@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4ODlttg034272; Fri, 24 May 2013 13:47:55 GMT (envelope-from zeising@svn.freebsd.org) Message-Id: <201305241347.r4ODlttg034272@svn.freebsd.org> From: Niclas Zeising Date: Fri, 24 May 2013 13:47:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318968 - head/security/pam_alreadyloggedin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 May 2013 13:47:56 -0000 Author: zeising Date: Fri May 24 13:47:55 2013 New Revision: 318968 URL: http://svnweb.freebsd.org/changeset/ports/318968 Log: Mark as broken on FreeBSD >= 900007, does not build with utmpx. Submitted by: xorg exp-run Approved by: portmgr (bapt) Modified: head/security/pam_alreadyloggedin/Makefile Modified: head/security/pam_alreadyloggedin/Makefile ============================================================================== --- head/security/pam_alreadyloggedin/Makefile Fri May 24 13:35:38 2013 (r318967) +++ head/security/pam_alreadyloggedin/Makefile Fri May 24 13:47:55 2013 (r318968) @@ -14,6 +14,12 @@ COMMENT= PAM module based on whether a u MANCOMPRESSED= yes +.include + +.if ${OSVERSION} => 900007 +BROKEN= Does not build with utmpx. +.endif + MAN8= pam_alreadyloggedin.8 MAKE_JOBS_SAFE= yes PLIST_FILES= lib/pam_alreadyloggedin.so lib/pam_alreadyloggedin.so.2 @@ -21,4 +27,4 @@ PLIST_FILES= lib/pam_alreadyloggedin.so do-configure: ${LN} -s ${FILESDIR}/Makefile.inc ${WRKDIR}/ -.include +.include