Skip to content

Commit 87829cc

Browse files
committed
release 1.6.2
for the NGINX >= 1.27.0 port detection/interface change Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 8de5f9c commit 87829cc

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

.cproject

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@
3434
<tool id="org.eclipse.linuxtools.cdt.autotools.core.toolchain.tool.gcc.548331172" name="GCC C Compiler" superClass="org.eclipse.linuxtools.cdt.autotools.core.toolchain.tool.gcc">
3535
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="gnu.c.compiler.option.include.paths.811285626" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
3636
<listOptionValue builtIn="false" value="&quot;${ProjDirPath}/include&quot;"/>
37-
<listOptionValue builtIn="false" value="/opt/local/include/apache2"/>
38-
<listOptionValue builtIn="false" value="/opt/local/include"/>
39-
<listOptionValue builtIn="false" value="/opt/local/include/apr-1"/>
37+
<listOptionValue builtIn="false" value="/opt/homebrew/Cellar/apr/1.7.4/include/apr-1"/>
38+
<listOptionValue builtIn="false" value="/opt/homebrew/Cellar/apr-util/1.6.3_1/include/apr-1"/>
39+
<listOptionValue builtIn="false" value="/opt/homebrew/include"/>
40+
<listOptionValue builtIn="false" value="/opt/homebrew/include/httpd"/>
41+
<listOptionValue builtIn="false" value="/usr/local/include"/>
4042
<listOptionValue builtIn="false" value="/Users/hzandbelt/projects/nginx/src/core"/>
4143
<listOptionValue builtIn="false" value="/Users/hzandbelt/projects/nginx/src/http"/>
4244
<listOptionValue builtIn="false" value="/Users/hzandbelt/projects/nginx/src/os/unix"/>

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
06/05/2024
2+
- release 1.6.2
3+
14
05/31/2024
25
- refactor NGINX port extraction so it works with NGINX >= 1.27.0; closes #49; thanks @anpin
36
- add PCRE2_CFLAGS to cache/server object linking

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([liboauth2],[1.6.2dev],[[email protected]])
1+
AC_INIT([liboauth2],[1.6.2],[[email protected]])
22

33
AM_INIT_AUTOMAKE([foreign no-define subdir-objects])
44
AC_CONFIG_MACRO_DIR([m4])

liboauth2_apache.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ Name: liboauth2_apache
1111
URL: https://github.com/OpenIDC/liboauth2
1212
Description: Apache C bindings for liboauth2
1313
Version: @VERSION@
14-
Requires: liboauth2 >= 1.6.1, apr-1, apr-util-1
14+
Requires: liboauth2 >= 1.6.2, apr-1, apr-util-1
1515
Cflags: -I${includedir}
1616
Libs: -L${libdir} -loauth2_apache

liboauth2_nginx.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ Name: liboauth2_nginx
1111
URL: https://github.com/OpenIDC/liboauth2
1212
Description: NGINX C bindings for liboauth2
1313
Version: @VERSION@
14-
Requires: liboauth2 >= 1.6.1
14+
Requires: liboauth2 >= 1.6.2
1515
Cflags: -I${includedir}
1616
Libs: -L${libdir} -loauth2_nginx

0 commit comments

Comments
 (0)