PERFORCE change 32247 for review
Marcel Moolenaar
marcel at FreeBSD.org
Sat May 31 17:44:32 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=32247
Change 32247 by marcel at marcel_nfs on 2003/05/31 17:43:58
IFC @32246
(libpam fix)
Affected files ...
.. //depot/projects/ia64/etc/pam.d/README#2 integrate
.. //depot/projects/ia64/etc/rc.d/mountcritlocal#4 integrate
.. //depot/projects/ia64/lib/Makefile#27 integrate
.. //depot/projects/ia64/lib/libpam/libpam/Makefile#21 integrate
Differences ...
==== //depot/projects/ia64/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/ia64/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/ia64/lib/Makefile#27 (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/ia64/lib/libpam/libpam/Makefile#21 (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 \
More information about the p4-projects
mailing list