diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-27 06:16:10 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-27 06:16:10 +0000 |
commit | a19c5ff65d9a509e7cfcba158fe89267ed131785 (patch) | |
tree | f3f4268a0c1b10364ff539cebfcf1ae1a5bd203c | |
parent | e7a4b3ae9b1f401c40cfb01733193c5b8ee7f320 (diff) | |
download | pam-a19c5ff65d9a509e7cfcba158fe89267ed131785.tar.gz pam-a19c5ff65d9a509e7cfcba158fe89267ed131785.tar.bz2 pam-a19c5ff65d9a509e7cfcba158fe89267ed131785.zip |
Relevant BUGIDs: none
Purpose of commit: bugfix/cleanup
Commit summary:
---------------
Some cleanups for building out of tree and docu.
2005-09-27 Thorsten Kukuk <kukuk@suse.de>
* NEWS: Document removal of pam_radius.
* autogen.sh: Make configure script executeable.
* conv/pam_conv1/Makefile (EXTRA_DIST): Removed lex.yy.c
(lex.yy.c): Fixed out of tree build.
* conv/pam_conv1/pam_conv.y: Fix main prototype.
* README: Adjust.
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | README | 7 | ||||
-rwxr-xr-x | autogen.sh | 1 | ||||
-rw-r--r-- | conf/pam_conv1/Makefile.am | 4 | ||||
-rw-r--r-- | conf/pam_conv1/pam_conv.y | 2 |
6 files changed, 20 insertions, 13 deletions
@@ -1,8 +1,20 @@ +2005-09-27 Thorsten Kukuk <kukuk@suse.de> + + * NEWS: Document removal of pam_radius. + * autogen.sh: Make configure script executeable. + + * conv/pam_conv1/Makefile (EXTRA_DIST): Removed lex.yy.c + (lex.yy.c): Fixed out of tree build. + + * conv/pam_conv1/pam_conv.y: Fix main prototype. + + * README: Adjust. + 2005-09-26 Tomas Mraz <t8m@centrum.cz> * NEWS: Add a few missing entries from CHANGELOG. - * AUTHORS: Fixed entries for Toady and me + * AUTHORS: Fixed entries for Toady and me. * Makefile.am (M4_FILES): Fixed out of tree build. * doc/specs/Makefile.am (EXTRA_DIST): Removed lex.yy.c @@ -10,7 +10,7 @@ Release 0.99.1.0 * libpam: Add pam_prompt,pam_vprompt,pam_error,pam_verror,pam_info and pam_vinfo functions for use by modules as extension * libpam: Add pam_syslog function for unified syslog messages from - PAM modules. + PAM modules * libpam: Moved functions from pammodutil to libpam * pam_umask: New module for setting umask from GECOS field, /etc/login.defs or /etc/default/login @@ -19,4 +19,5 @@ Release 0.99.1.0 * pam_limits: Fix regression from RLIMIT_NICE support (wrong limit values for other limits are applied) * pam_access: Support for NULL tty - matches ALL and NONE keywords -* pam_lastlog: Enable log to wtmp by default. Add "nowtmp" option. +* pam_lastlog: Enable log to wtmp by default. Add "nowtmp" option +* pam_radius: This module was removed @@ -1,6 +1,3 @@ -# -# $Id$ -# Hello! @@ -23,7 +20,3 @@ box may stop working..) That said, please report problems to the bug reporting database on sourceforge.net. - -Andrew Morgan -<morgan@kernel.org> -<agmorgan@users.sourceforge.net> @@ -3,3 +3,4 @@ aclocal -I m4 automake --add-missing --copy autoreconf +chmod 755 configure diff --git a/conf/pam_conv1/Makefile.am b/conf/pam_conv1/Makefile.am index c16fc0f8..49f8197b 100644 --- a/conf/pam_conv1/Makefile.am +++ b/conf/pam_conv1/Makefile.am @@ -4,7 +4,7 @@ CLEANFILES = *~ -EXTRA_DIST = README lex.yy.c +EXTRA_DIST = README noinst_PROGRAMS = pam_conv1 @@ -15,4 +15,4 @@ pam_conv1_LDADD = @LEXLIB@ pam_conv.c: lex.yy.c lex.yy.c: pam_conv.lex - $(LEX) pam_conv.lex + $(LEX) $(srcdir)/pam_conv.lex diff --git a/conf/pam_conv1/pam_conv.y b/conf/pam_conv1/pam_conv.y index dc82e447..01d177f8 100644 --- a/conf/pam_conv1/pam_conv.y +++ b/conf/pam_conv1/pam_conv.y @@ -195,7 +195,7 @@ void yyerror(const char *format, ...) fprintf(stderr, "\n"); } -int main(int argc, char *argv[]) +int main(void) { if (mkdir(PAM_D, PAM_D_MODE) != 0) { yyerror(PAM_D " already exists.. aborting"); |