]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: none
authorThorsten Kukuk <kukuk@thkukuk.de>
Tue, 27 Sep 2005 06:16:10 +0000 (06:16 +0000)
committerThorsten Kukuk <kukuk@thkukuk.de>
Tue, 27 Sep 2005 06:16:10 +0000 (06:16 +0000)
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.

ChangeLog
NEWS
README
autogen.sh
conf/pam_conv1/Makefile.am
conf/pam_conv1/pam_conv.y

index 1eb15d0b25f64ee5217cb5851d50c0c1d2b30f02..3161b1c7cacd1d140bc1aaa67516972773dc1411 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/NEWS b/NEWS
index ec9a70a41933753b42e1bedc6bc8e96b4791af8c..d7d72edc60e3f05a3bd6bcb39114a6d6c4d33ef7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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
diff --git a/README b/README
index 8c880290272e1afaefcd6d24477c18aded468366..bcf962a8161376cf5e85d031f48ba751641de9a6 100644 (file)
--- a/README
+++ b/README
@@ -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>
index 54567768743df6821f2a98f997f4d4d4311d79df..e0bd290036fefa232c194acb522c4a15072b0f03 100755 (executable)
@@ -3,3 +3,4 @@
 aclocal -I m4
 automake --add-missing --copy
 autoreconf
+chmod 755 configure
index c16fc0f869ba6ba36092353fd6032ad3cbc29743..49f8197b04ff89e751357965691f0030e46a9e4d 100644 (file)
@@ -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
index dc82e447d71cd9225f45bfc86691156d05397d82..01d177f8839f498f2c2cef10d9aaa4137fccad3a 100644 (file)
@@ -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");