[svn-upgrade] Integrating new upstream version, shadow (4.0.11.1)

This commit is contained in:
nekral-guest
2007-10-07 11:46:43 +00:00
parent b48129fcbb
commit 1de90a599c
100 changed files with 830 additions and 738 deletions

View File

@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT
AM_INIT_AUTOMAKE(shadow, 4.0.11)
AM_INIT_AUTOMAKE(shadow, 4.0.11.1)
AC_CONFIG_HEADERS([config.h])
dnl Some hacks...
@@ -201,7 +201,15 @@ dnl be interrupted with Ctrl-C (unlike Linux libc).
AC_DEFINE(getpass, libshadow_getpass,
[Define to libshadow_getpass to use our own version of getpass().])
AC_ARG_ENABLE(shadowgrp, [ --enable-shadowgrp enable shadow group support [default=yes]])
AC_ARG_ENABLE(shadowgrp,
[ --enable-shadowgrp enable shadow group support [default=yes]],
[case "${enableval}" in
yes) enable_shadowgrp="yes" ;;
no) enable_shadowgrp="no" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-shadowgrp) ;;
esac],
[enable_shadowgrp="no"]
)
AC_ARG_WITH(libcrack, [ --with-libcrack try to use libcrack (default if found)])
AC_ARG_WITH(libpam, [ --with-libpam use libpam for PAM support])