Skip to content

Commit b94a8c6

Browse files
committed
release 3.3.0: change Makefile install procedure
depend on liboauth 1.4.5.2 Signed-off-by: Hans Zandbelt <[email protected]>
1 parent c9d3fe0 commit b94a8c6

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
12/06/2022
2+
- change Makefile install procedure
3+
- depend on liboauth 1.4.5.2
4+
- release 3.3.0
5+
16
06/07/2021
27
- depend on liboauth 1.4.2 so it works on SPARC64; see https://github.com/zmartzone/ngx_oauth2_module/issues/2
38
- release 3.2.1

Makefile.am

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ clang-format:
2424
clang-format -style=file -i `find . -name *.[ch]`
2525

2626
install:
27-
sudo cp .libs/@[email protected] /usr/local/nginx/modules/
27+
${INSTALL} -d $(DESTDIR)/usr/local/nginx/modules/
28+
${INSTALL} -p -m 755 .libs/@[email protected] $(DESTDIR)/usr/local/nginx/modules/@[email protected]
29+
30+
uninstall:
31+
rm -f $(DESTDIR)/usr/local/nginx/modules/@[email protected]

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([ngx_openidc_module],[3.2.1],[[email protected]])
1+
AC_INIT([ngx_openidc_module],[3.3.0],[[email protected]])
22

33
AM_INIT_AUTOMAKE([foreign no-define subdir-objects])
44
AC_CONFIG_MACRO_DIRS([m4])
@@ -25,11 +25,11 @@ AM_CONDITIONAL(HAVE_NGINX, [test x"$have_nginx" = "xyes"])
2525
AC_SUBST(NGINX_CFLAGS)
2626
AC_SUBST(NGINX_LIBS)
2727

28-
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.2])
28+
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.5.2])
2929
AC_SUBST(OAUTH2_CFLAGS)
3030
AC_SUBST(OAUTH2_LIBS)
3131

32-
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.2])
32+
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.5.2])
3333
AC_SUBST(OAUTH2_NGINX_CFLAGS)
3434
AC_SUBST(OAUTH2_NGINX_LIBS)
3535

0 commit comments

Comments
 (0)