summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@redhat.com>2016-01-04 21:51:28 +0100
committerStef Walter <stefw@redhat.com>2016-01-04 21:51:28 +0100
commit42315c19533177f63825cfa8c4c5c11b136fd6a0 (patch)
tree97d84454b44cde67fbc75fea9e086285e20ca391
parent10262a155ace38f52ac20be101362b250d86c1b3 (diff)
Bump version number0.4.5
-rw-r--r--NEWS5
-rw-r--r--configure.in4
-rw-r--r--module/Makefile.am4
3 files changed, 10 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index c9928a1..8797b81 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+0.4.5
+ - Fix build issues
+
+...
+
0.4
- Add support for logout path, and redirect after logout.
diff --git a/configure.in b/configure.in
index af7caea..d9d9a7d 100644
--- a/configure.in
+++ b/configure.in
@@ -36,8 +36,8 @@ dnl Stef Walter <stef@memberwebs.com>
dnl
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(mod_auth_singleid, 0.4.4, stef@memberwebs.com)
-AM_INIT_AUTOMAKE(mod_auth_singleid, 0.4.4)
+AC_INIT(mod_auth_singleid, 0.4.5, stef@memberwebs.com)
+AM_INIT_AUTOMAKE(mod_auth_singleid, 0.4.5)
AC_CONFIG_SRCDIR([module/mod_auth_singleid.c])
AM_CONFIG_HEADER([config.h])
diff --git a/module/Makefile.am b/module/Makefile.am
index 1c93f04..ca371dc 100644
--- a/module/Makefile.am
+++ b/module/Makefile.am
@@ -12,8 +12,10 @@ libmodauthsingleid_la_SOURCES = \
storage.c \
consumer.cc
+CLEANFILES = mod_auth_singleid.la
+
install-exec-local:
- @APXS@ -i -a -n 'auth_singleid' mod_auth_singleid.la
+ -@APXS@ -i -a -n 'auth_singleid' mod_auth_singleid.la
mod_auth_singleid.la: libmodauthsingleid.la
@APXS@ -c -o $@ libmodauthsingleid.la ${APACHE_CFLAGS} ${OPKELE_CFLAGS} ${OPKELE_LIBS}