Skip to content

Commit a7f717a

Browse files
committed
allow deprecated declarations to build with OpenSSL 3.0; see #31
release 1.4.4 Signed-off-by: Hans Zandbelt <hans.zandbelt@zmartzone.eu>
1 parent e22a342 commit a7f717a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ jobs:
5252
run: make check || (cat test-suite.log && exit -1)
5353

5454
- name: Distcheck
55-
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-nginx=/tmp/nginx" DESTDIR="/tmp/mod_auth_openidc"
55+
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-nginx=/tmp/nginx" DESTDIR="/tmp/liboauth2"
5656

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
12/23/2021
2+
- allow deprecated declarations to build with OpenSSL 3.0; see #31
3+
- release 1.4.4
4+
15
12/22/2021
26
- hash the cache encryption key to a string instead of bytes
37
- Makefile.am improvements:
48
- move OpenSSL libs go generic libraries so cache files compile with the right flags
59
- use ${srcdir} to conform to distcheck
610
- add Github Actions CI; remove Travis
7-
- bump to 1.4.4dev
811

912
10/12/2021
1013
- make outgoing_proxy an endpoint property

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ EXTRA_DIST = autogen.sh ChangeLog README.md LICENSE
66
# generic
77
#
88

9-
AM_CPPFLAGS = -Wall -Werror -I${srcdir}/include -I${srcdir}/src @JANSSON_CFLAGS@ @OPENSSL_CFLAGS@
9+
AM_CPPFLAGS = -Wall -Werror -Wno-error=deprecated-declarations -I${srcdir}/include -I${srcdir}/src @JANSSON_CFLAGS@ @OPENSSL_CFLAGS@
1010
AM_CPPFLAGS += $(CODE_COVERAGE_CPPFLAGS) $(CODE_COVERAGE_CFLAGS)
1111
AM_LDFLAGS = --coverage
1212

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.4.4dev],[hans.zandbelt@zmartzone.eu])
1+
AC_INIT([liboauth2],[1.4.4],[hans.zandbelt@zmartzone.eu])
22

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

0 commit comments

Comments
 (0)