From eca5cdba8ac90eb961f790e38ea69a7df9b628f6 Mon Sep 17 00:00:00 2001 From: Hans Zandbelt Date: Wed, 5 Jun 2024 20:38:42 +0200 Subject: [PATCH] release 3.5.0: depend on liboauth >= 1.6.2 compile with NGINX >= 1.26.0 Signed-off-by: Hans Zandbelt --- .cproject | 39 ++++++++++++++++++++------------------- ChangeLog | 4 ++++ configure.ac | 6 +++--- 3 files changed, 27 insertions(+), 22 deletions(-) diff --git a/.cproject b/.cproject index a7e4723..42741a9 100644 --- a/.cproject +++ b/.cproject @@ -18,7 +18,7 @@ - + @@ -115,6 +115,21 @@ + + + + + + + + + + + + + + + @@ -123,7 +138,7 @@ all true true - true + false make @@ -131,30 +146,16 @@ clean true true - true + false make + clang-format true true - true + false - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ChangeLog b/ChangeLog index 85937a1..b15a72d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +06/05/2024 +- depend on liboauth2 >= 1.6.2 +- release 3.5.0 + 06/02/2024 - don't include standard headers before NGINX headers; closes #2 ; thanks @anpin avoid compilation error with NGINX 1.26.0: field 'pkt6' has incomplete type diff --git a/configure.ac b/configure.ac index f846093..1109330 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([ngx_sts_module],[3.4.0],[hans.zandbelt@openidc.com]) +AC_INIT([ngx_sts_module],[3.5.0],[hans.zandbelt@openidc.com]) AM_INIT_AUTOMAKE([foreign no-define subdir-objects]) AC_CONFIG_MACRO_DIRS([m4]) @@ -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.6.0]) +PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.6.2]) AC_SUBST(OAUTH2_CFLAGS) AC_SUBST(OAUTH2_LIBS) -PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.6.0]) +PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.6.2]) AC_SUBST(OAUTH2_NGINX_CFLAGS) AC_SUBST(OAUTH2_NGINX_LIBS)