From owner-p4-projects@FreeBSD.ORG Sat May 31 18:51:06 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5F6B837B404; Sat, 31 May 2003 18:51:06 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDBA637B401 for ; Sat, 31 May 2003 18:51:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E8043F75 for ; Sat, 31 May 2003 18:51:05 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h511p50U075248 for ; Sat, 31 May 2003 18:51:05 -0700 (PDT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h511p4cR075245 for perforce@freebsd.org; Sat, 31 May 2003 18:51:04 -0700 (PDT) Date: Sat, 31 May 2003 18:51:04 -0700 (PDT) Message-Id: <200306010151.h511p4cR075245@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Subject: PERFORCE change 32252 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2003 01:51:07 -0000 http://perforce.freebsd.org/chv.cgi?CH=32252 Change 32252 by rwatson@rwatson_tislabs on 2003/05/31 18:50:17 Integ TrustedBSD base: pick up pam build fix. Affected files ... .. //depot/projects/trustedbsd/base/etc/pam.d/README#2 integrate .. //depot/projects/trustedbsd/base/etc/rc.d/mountcritlocal#4 integrate .. //depot/projects/trustedbsd/base/lib/Makefile#18 integrate .. //depot/projects/trustedbsd/base/lib/libpam/libpam/Makefile#19 integrate Differences ... ==== //depot/projects/trustedbsd/base/etc/pam.d/README#2 (text+ko) ==== @@ -30,12 +30,14 @@ password: update authentication tokens. control-flag: How libpam handles success or failure of the module. - required: success is required, and on failure all remaining - modules are run. + required: success is required; on failure all remaining + modules are run, but the request will be denied. requisite: success is required, and on failure no remaining modules are run. sufficient: success is sufficient, and if no previous required module failed, no remaining modules are run. + binding: success is sufficient; on failure all remaining + modules are run, but the request will be denied. optional: ignored unless the other modules return PAM_IGNORE. arguments: Module-specific options, plus some generic ones: @@ -57,4 +59,4 @@ To get the intended semantics, add a "required" entry listing the pam_deny module at the end of the chain. -$FreeBSD: src/etc/pam.d/README,v 1.3 2001/12/05 21:26:00 des Exp $ +$FreeBSD: src/etc/pam.d/README,v 1.4 2003/06/01 00:34:38 des Exp $ ==== //depot/projects/trustedbsd/base/etc/rc.d/mountcritlocal#4 (text+ko) ==== @@ -1,7 +1,7 @@ #!/bin/sh # # $NetBSD: mountcritlocal,v 1.7 2002/04/29 12:29:53 lukem Exp $ -# $FreeBSD: src/etc/rc.d/mountcritlocal,v 1.3 2002/09/06 16:18:05 gordon Exp $ +# $FreeBSD: src/etc/rc.d/mountcritlocal,v 1.4 2003/06/01 00:32:03 gordon Exp $ # # PROVIDE: mountcritlocal @@ -20,7 +20,7 @@ FreeBSD) # Set up the list of network filesystem types for which mounting # should be delayed until after network initialization. - networkfs_types='nfs:NFS smbfs:SMB portalfs:PORTAL' + networkfs_types='nfs:NFS smbfs:SMB portalfs:PORTAL nwfs:NWFS' case ${extra_netfs_types} in [Nn][Oo]) ;; ==== //depot/projects/trustedbsd/base/lib/Makefile#18 (text+ko) ==== @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $FreeBSD: src/lib/Makefile,v 1.158 2003/05/31 18:43:17 mtm Exp $ +# $FreeBSD: src/lib/Makefile,v 1.159 2003/06/01 00:32:21 marcel Exp $ # To satisfy shared library or ELF linkage when only the libraries being # built are visible: @@ -71,6 +71,12 @@ .endif .endif +.if ${MACHINE_ARCH} == "ia64" +.if !defined(NOLIBTHR) +_libthr= libthr +.endif +.endif + .if ${MACHINE_ARCH} == "alpha" _libio= libio _compat= compat ==== //depot/projects/trustedbsd/base/lib/libpam/libpam/Makefile#19 (text+ko) ==== @@ -33,7 +33,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $FreeBSD: src/lib/libpam/libpam/Makefile,v 1.44 2003/05/05 21:15:35 des Exp $ +# $FreeBSD: src/lib/libpam/libpam/Makefile,v 1.45 2003/05/31 23:38:16 des Exp $ OPENPAM= ${.CURDIR}/../../../contrib/openpam .PATH: ${OPENPAM}/include ${OPENPAM}/lib ${OPENPAM}/doc/man @@ -80,8 +80,7 @@ pam_vinfo.c \ pam_vprompt.c # Local additions -SRCS+= pam_debug_log.c \ - pam_std_option.c +SRCS+= pam_debug_log.c MAN= openpam.3 \ openpam_borrow_cred.3 \