mirror of
git://git.gnu.org.ua/pam-modules.git
synced 2025-04-25 16:09:54 +03:00
Update
git-svn-id: file:///svnroot/pam-modules/trunk@55 56984be4-0537-0410-a56c-fcb268c96130
This commit is contained in:
parent
1c487cbd52
commit
35c5bc9e42
4 changed files with 30 additions and 13 deletions
2
AUTHORS
2
AUTHORS
|
@ -1 +1 @@
|
|||
Sergey Poznyakoff <gray@farlep.net>
|
||||
Sergey Poznyakoff <gray@gnu.org.ua>
|
||||
|
|
4
NEWS
4
NEWS
|
@ -2,9 +2,9 @@ pam-modules -- history of user-visible changes. 2007-08-11
|
|||
Copyright (C) 2001,2004,2005,2007 Sergey Poznyakoff
|
||||
See the end of file for copying conditions.
|
||||
|
||||
Please send radius bug reports to <gray@gnu.org.ua>
|
||||
Please send radius bug reports to <bug-pam-modules@gnu.org.ua>
|
||||
|
||||
Version 1.1 (CVS)
|
||||
Version 1.1, 2007-08-11
|
||||
|
||||
* pam_fshadow allows to use virtual domains to specify alternate password
|
||||
databases. New options: regex, basic, extended, ignore-case, icase
|
||||
|
|
31
README
31
README
|
@ -1,5 +1,5 @@
|
|||
PAM-modules README
|
||||
Copyright 2005 Sergey Poznyakoff
|
||||
Copyright (C) 2001, 2004, 2005, 2007 Sergey Poznyakoff
|
||||
See the end of file for copying conditions.
|
||||
|
||||
* Introduction
|
||||
|
@ -10,7 +10,7 @@ using them. It is *not* intended as a replacement for the
|
|||
documentation, it is provided as a brief reference only. The complete
|
||||
documentation for PAM-modules is available in doc/ subdirectory. To
|
||||
read it without installing the package run `info -f
|
||||
doc/pam-modules'. After installation the documentation can be accessed
|
||||
doc/pam-modules'. After installation, the documentation can be accessed
|
||||
running `info pam-modules'.
|
||||
|
||||
The online copy of the documentation in various formats is available
|
||||
|
@ -23,30 +23,43 @@ To install the package, do
|
|||
** ./configure [options]
|
||||
|
||||
For the list of available options consult file INSTALL.
|
||||
The only applications-specific option is:
|
||||
The applications-specific options are:
|
||||
|
||||
*** --with-pamdir=DIR
|
||||
--with-pamdir=DIR
|
||||
Set installation directory for PAM loadable files.
|
||||
Default is PREFIX/lib/security
|
||||
|
||||
--without-mysql
|
||||
Do not build pam_mysql
|
||||
|
||||
--without-pgsql
|
||||
--without-postgres
|
||||
Do not build pam_pgsql
|
||||
|
||||
--without-sql
|
||||
Do not build SQL-dependent modules (i.e. pam_mysql and
|
||||
pam_pgsql)
|
||||
|
||||
--with-pamdir=DIR
|
||||
Install PAM modiles in DIR (default is PREFIX/lib/security)
|
||||
|
||||
** Run make
|
||||
|
||||
** Run make install
|
||||
|
||||
* Usage
|
||||
|
||||
See accompanying documentation for the detailed discussion.
|
||||
See the accompanying documentation for the detailed description.
|
||||
|
||||
* Bug reporting
|
||||
|
||||
Send bug reports to <gray@gnu.org.ua>. Take a look at chapter
|
||||
"Reporting Bugs" in the accompanying documentation, it can contain
|
||||
some useful hints.
|
||||
Send bug reports to <bug-pam-modules@gnu.org.ua>. Read the chapter
|
||||
"Reporting Bugs" in the accompanying documentation for more information.
|
||||
|
||||
|
||||
* Copyright information:
|
||||
|
||||
Copyright (C) 2001,2004,2005 Sergey Poznyakoff
|
||||
Copyright (C) 2001, 2004, 2005, 2007 Sergey Poznyakoff
|
||||
|
||||
Permission is granted to anyone to make or distribute verbatim copies
|
||||
of this document as received, in any medium, provided that the
|
||||
|
|
|
@ -63,9 +63,13 @@ AC_ARG_WITH(mysql,
|
|||
AC_HELP_STRING([--without-mysql],
|
||||
[Configure to work without MySQL]),
|
||||
[MYSQL=$withval])
|
||||
AC_ARG_WITH(pgsql,
|
||||
AC_HELP_STRING([--without-pgsql],
|
||||
[Configure to work without Postgres]),
|
||||
[PGSQL=$withval])
|
||||
AC_ARG_WITH(postgres,
|
||||
AC_HELP_STRING([--without-postgres],
|
||||
[Configure to work without Postgres]),
|
||||
[Same as --without-pgsql]),
|
||||
[PGSQL=$withval])
|
||||
AC_ARG_WITH(sql,
|
||||
AC_HELP_STRING([--without-sql],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue