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 7e0bf95 commit 35597f4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 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/02/2021
- add option to not return an error on token missing/exchange failure

Expand Down
6 changes: 5 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,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_sts_module],[3.2.0],[[email protected]])
AC_INIT([ngx_sts_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.0])
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.0])
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.4.5.2])
AC_SUBST(OAUTH2_NGINX_CFLAGS)
AC_SUBST(OAUTH2_NGINX_LIBS)

Expand Down
2 changes: 1 addition & 1 deletion src/liboauth2-sts

0 comments on commit 35597f4

Please sign in to comment.