summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Nijhof <jeroen@jeroennijhof.nl>2013-07-01 21:45:55 +0200
committerJeroen Nijhof <jeroen@jeroennijhof.nl>2013-07-01 21:45:55 +0200
commit0a84b6be6cb721180b2665c8eed5350eb34f7eae (patch)
treea45050252dbe55f55be98c5decc414c10603edaf
parent94230d452c72f41c1ebe91e71660582d4cbb8b03 (diff)
downloadpam_tacplus-0a84b6be6cb721180b2665c8eed5350eb34f7eae.tar.gz
pam_tacplus-0a84b6be6cb721180b2665c8eed5350eb34f7eae.zip
A lot of cleanups and improvements by Walter de Jong
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL9
-rw-r--r--README4
-rw-r--r--configure.ac2
-rw-r--r--pam_tacplus.spec.in3
5 files changed, 13 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 6389bb9..bbb37d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1.3.9
+* A lot of cleanups and improvements by Walter de Jong <walter@heiho.net>
+* Fixed build instruction in spec file and INSTALL
+* Active_server can not be a pointer, data lost after authentication.
+
1.3.8
* Added port option per server, thanks to Luc Ducazu <lducazu@gmail.com>
* Fixed missing FIONREAD for solaris
diff --git a/INSTALL b/INSTALL
index 5cb7588..44a9c9b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -2,12 +2,9 @@
pam_tacplus consists of the module code and `libtac' simple TACPLUS+ library.
Simple `./configure' followed by `make' should compile both TACACS+ library and pam_tacplus module.
-If there is no ./configure create one with autotools:
+If there is no ./configure recreate one with autotools:
-$ aclocal
-$ autoconf
-$ autoheader
-$ automake --add-missing
+$ autoreconf -i
You should get a `pam_tacplus.so' module, which is placed in
@@ -18,7 +15,7 @@ name of the proper service.
This code is known to work on Linux, Solaris and AIX for now.
-Dec 22 2010
+Jul 1 2013
Jeroen Nijhof <jeroen@jeroennijhof.nl>
Pawel Krawczyk <pawel.krawczyk@hush.com>
diff --git a/README b/README
index 392994e..ae36c1d 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-pam_tacplus v1.3.8
-Sep 8 2012
+pam_tacplus v1.3.9
+Jul 1 2013
This PAM module support the following functions:
diff --git a/configure.ac b/configure.ac
index e38e146..723dfe1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,7 +14,7 @@ AC_PREREQ(2.59)
AC_COPYRIGHT([
See the included file: COPYING for copyright information.
])
-AC_INIT(pam_tacplus, 1.3.8, [jeroen@jeroennijhof.nl,pawel.krawczyk@hush.com])
+AC_INIT(pam_tacplus, 1.3.9, [jeroen@jeroennijhof.nl,pawel.krawczyk@hush.com])
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([pam_tacplus.c])
diff --git a/pam_tacplus.spec.in b/pam_tacplus.spec.in
index 262279f..e61c858 100644
--- a/pam_tacplus.spec.in
+++ b/pam_tacplus.spec.in
@@ -21,7 +21,7 @@ Packager: NRB
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# Source Information
-Source0: http://downloads.sourceforge.net/project/tacplus/pam_tacplus/pam_tacplus-@VERSION@.tar.gz
+Source0: https://github.com/jeroennijhof/pam_tacplus/archive/@VERSION@.tar.gz
# Dependency Information
BuildRequires: gcc binutils pam-devel
@@ -34,6 +34,7 @@ PAM Tacacs+ module based on code produced by Pawel Krawczyk <pawel.krawczyk@hush
%setup -q -a 0
%build
+autoreconf -i
./configure
make