forked from jeroennijhof/pam_script
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* AC_CHECK_HEADERS improvements for libpam header files.
- Loading branch information
Jeroen
committed
Jan 27, 2012
1 parent
eccd960
commit a3bd795
Showing
8 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,5 +17,6 @@ pam_script.la | |
pam_script_la-pam_script.lo | ||
pam_script.lo | ||
pam-script.spec | ||
pam-script.7 | ||
stamp-h1 | ||
*.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Primary Author: | ||
Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
Other Authors and Major Contributors: | ||
R.K. Owen, Ph.D. <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
|
||
**************************** Release 1.1 ****************************** | ||
pam-script 1.1.5 Jeroen Nijhof <[email protected]> | ||
* AC_CHECK_HEADERS improvements for libpam header files | ||
* Changed LOG_AUTHPRIV to LOG_AUTH for better syslog portability | ||
* fixed an expression in function pam_sm_chauthtok() used == | ||
for flags instead of a binary logic bit operator, report and | ||
fix by Mikolaj Kucharski. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
README | ||
|
||
PAM-script has been written by Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
PAM-script has been written by Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
with packaging and some modifications by R.K. Owen <[email protected]>. | ||
|
||
Description: | ||
|
@@ -69,5 +69,5 @@ Look at the README.examples file, which may be located under | |
|
||
Problem/BUGS report: | ||
If you find any bugs or problems just mail me | ||
Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ dnl | |
dnl File: configure.in | ||
dnl Revision: $Id: configure.ac,v 1.14 2010/06/14 12:50:57 j-nijhof Exp $ | ||
dnl Created: 2007/08/17 | ||
dnl Author: Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
dnl Author: Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
dnl R.K. Owen <[email protected]> | ||
dnl | ||
dnl Process this file with autoconf to produce a configure script | ||
|
@@ -14,7 +14,7 @@ AC_PREREQ(2.59) | |
AC_COPYRIGHT([ | ||
See the included file: COPYING for copyright information. | ||
]) | ||
AC_INIT(pam-script, 1.1.4, [jeroen@nijhofnet.nl,[email protected]]) | ||
AC_INIT(pam-script, 1.1.5, [jeroen@jeroennijhof.nl,[email protected]]) | ||
AC_CONFIG_AUX_DIR(config) | ||
AM_INIT_AUTOMAKE(1.9.6) | ||
AC_CONFIG_SRCDIR([pam_script.c]) | ||
|
@@ -57,8 +57,10 @@ dnl Checks for header files. | |
AC_HEADER_STDC | ||
AC_HEADER_SYS_WAIT | ||
AC_CHECK_HEADERS([string.h syslog.h unistd.h]) | ||
AC_CHECK_HEADERS([security/pam_appl.h security/pam_modules.h],, | ||
[AC_MSG_ERROR([*** Sorry, you must install the PAM development module ***])]) | ||
AC_CHECK_HEADERS([security/pam_appl.h], [], | ||
[AC_MSG_ERROR([*** Sorry, you must install the PAM development module ***])]) | ||
AC_CHECK_HEADERS([security/pam_modules.h], [], [], | ||
[#include <security/pam_appl.h>]) | ||
|
||
dnl -------------------------------------------------------------------- | ||
dnl Checks for typedefs, structures, and compiler characteristics. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
pam-script | ||
|
||
Copyright (C) 2007-2009 Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
Copyright (C) 2007-2009 Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
and R.K. Owen <[email protected]> for some parts. | ||
|
||
This program is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ which can be used to modify the script behavior. | |
and the PAM "The System Administrators' Guide" | ||
.SH AUTHOR | ||
.nf | ||
pam-script was written by Jeroen Nijhof <jnijhof@nijhofnet.nl> | ||
pam-script was written by Jeroen Nijhof <jeroen@jeroennijhof.nl> | ||
with some additions and modifications by R.K. Owen, Ph.D. <[email protected]>. | ||
.PP | ||
This manual page was written by R.K. Owen <[email protected]>, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters