Skip to content

Commit

Permalink
release 3.3.0: change Makefile install procedure
Browse files Browse the repository at this point in the history
depend on liboauth 1.4.5.2

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Dec 6, 2022
1 parent b683b25 commit e992222
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
12/06/2022
- change Makefile install procedure
- depend on liboauth 1.4.5.2
- release 3.3.0

07/27/2022
- depend on liboauth2 1.4.5 with multi-treading fix for "OAuth2TokenVerify jwk <key>"
- release 3.2.3
Expand Down
6 changes: 5 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@ clang-format:
clang-format -style=file -i `find . -name *.[ch]`

install:
sudo cp .libs/@[email protected] /usr/local/nginx/modules/
${INSTALL} -d $(DESTDIR)/usr/local/nginx/modules/
${INSTALL} -p -m 755 .libs/@[email protected] $(DESTDIR)/usr/local/nginx/modules/@[email protected]

uninstall:
rm -f $(DESTDIR)/usr/local/nginx/modules/@[email protected]
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([ngx_oauth2_module],[3.2.3],[[email protected]])
AC_INIT([ngx_oauth2_module],[3.3.0],[[email protected]])

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

PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.5])
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.4.5.2])
AC_SUBST(OAUTH2_CFLAGS)
AC_SUBST(OAUTH2_LIBS)

PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.5])
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.5.2])
AC_SUBST(OAUTH2_NGINX_CFLAGS)
AC_SUBST(OAUTH2_NGINX_LIBS)

Expand Down

0 comments on commit e992222

Please sign in to comment.