source:
scripts/patches/shadow-4.0.14-configure_fix-1.patch@
b6317b7
Last change on this file since b6317b7 was c7ec163, checked in by , 19 years ago | |
---|---|
|
|
File size: 3.0 KB |
-
shadow-4.0.14
Submitted By: Jim Gifford (patches at jg555 dot com) Date: 2006-01-03 Initial Package Version: 4.0.14 Origin: Jim Gifford Upstream Status: Submitted Description: Fixed default values As released libpam libselinux and audit are turned on by default. This patch corrects the issue. diff -Naur shadow-4.0.14.orig/configure shadow-4.0.14/configure
old new 1048 1048 both] 1049 1049 --with-tags[=TAGS] 1050 1050 include additional configurations [automatic] 1051 --with-audit use auditing support [default=yes if found] 1052 --with-libpam use libpam for PAM support [default=yes if 1053 found] 1054 --with-selinux use SELinux support [default=autodetect] 1051 --with-audit use auditing support [default=no] 1052 --with-libpam use libpam for PAM support [default=no] 1053 --with-selinux use SELinux support [default=no] 1055 1054 --with-skey use S/Key support [default=no] 1056 1055 --with-libcrack use libcrack [default=yes if found and if PAM not 1057 1056 enabled] … … 22185 22184 withval="$with_audit" 22186 22185 with_audit=$withval 22187 22186 else 22188 with_audit= yes22187 with_audit=no 22189 22188 fi; 22190 22189 22191 22190 # Check whether --with-libpam or --without-libpam was given. … … 22193 22192 withval="$with_libpam" 22194 22193 with_libpam=$withval 22195 22194 else 22196 with_libpam= yes22195 with_libpam=no 22197 22196 fi; 22198 22197 22199 22198 # Check whether --with-selinux or --without-selinux was given. … … 22201 22200 withval="$with_selinux" 22202 22201 with_selinux=$withval 22203 22202 else 22204 with_selinux= yes22203 with_selinux=no 22205 22204 fi; 22206 22205 22207 22206 # Check whether --with-skey or --without-skey was given. -
configure.in
diff -Naur shadow-4.0.14.orig/configure.in shadow-4.0.14/configure.in
old new 219 219 ) 220 220 221 221 AC_ARG_WITH(audit, 222 [AC_HELP_STRING([--with-audit], [use auditing support @<:@default= yes if found@:>@])],223 [with_audit=$withval], [with_audit= yes])222 [AC_HELP_STRING([--with-audit], [use auditing support @<:@default=no@:>@])], 223 [with_audit=$withval], [with_audit=no]) 224 224 AC_ARG_WITH(libpam, 225 [AC_HELP_STRING([--with-libpam], [use libpam for PAM support @<:@default= yes if found@:>@])],226 [with_libpam=$withval], [with_libpam= yes])225 [AC_HELP_STRING([--with-libpam], [use libpam for PAM support @<:@default=no@:>@])], 226 [with_libpam=$withval], [with_libpam=no]) 227 227 AC_ARG_WITH(selinux, 228 [AC_HELP_STRING([--with-selinux], [use SELinux support @<:@default= autodetect@:>@])],229 [with_selinux=$withval], [with_selinux= yes])228 [AC_HELP_STRING([--with-selinux], [use SELinux support @<:@default=not@:>@])], 229 [with_selinux=$withval], [with_selinux=no]) 230 230 AC_ARG_WITH(skey, 231 231 [AC_HELP_STRING([--with-skey], [use S/Key support @<:@default=no@:>@])], 232 232 [with_skey=$withval], [with_skey=no])
Note:
See TracBrowser
for help on using the repository browser.