Skip to content

Commit 44abfb4

Browse files
committed
v4.0.0: change LICENSE to Apache 2.0
depend on liboauth2 >= 2.0.0 Signed-off-by: Hans Zandbelt <[email protected]>
1 parent d61664d commit 44abfb4

File tree

6 files changed

+205
-686
lines changed

6 files changed

+205
-686
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
08/22/2024
2+
- change LICENSE to Apache 2.0
3+
- depend on liboauth2 >= 2.0.0
4+
- release 4.0.0
5+
16
06/21/2024
27
- Makefile.am: use pkglib_LTLIBRARIES
38

LICENSE

Lines changed: 176 additions & 660 deletions
Large diffs are not rendered by default.

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([ngx_sts_module],[3.5.0],[[email protected]])
1+
AC_INIT([ngx_sts_module],[4.0.0],[[email protected]])
22

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

28-
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.6.2])
28+
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 2.0.0])
2929
AC_SUBST(OAUTH2_CFLAGS)
3030
AC_SUBST(OAUTH2_LIBS)
3131

32-
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.6.2])
32+
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 2.0.0])
3333
AC_SUBST(OAUTH2_NGINX_CFLAGS)
3434
AC_SUBST(OAUTH2_NGINX_LIBS)
3535

src/ngx_sts_module.c

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
/***************************************************************************
22
*
3-
* Copyright (C) 2018-2024 - ZmartZone Holding BV - www.zmartzone.eu
3+
* Copyright (C) 2018-2024 - ZmartZone Holding BV
44
*
5-
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU Affero General Public License as
7-
* published by the Free Software Foundation, either version 3 of the
8-
* License, or (at your option) any later version.
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
98
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU Affero General Public License for more details.
9+
* http://www.apache.org/licenses/LICENSE-2.0
1410
*
15-
* You should have received a copy of the GNU Affero General Public License
16-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
1716
*
1817
* @Author: Hans Zandbelt - [email protected]
1918
*

src/ngx_sts_module_modules.c

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
/***************************************************************************
22
*
3-
* Copyright (C) 2018-2024 - ZmartZone Holding BV - www.zmartzone.eu
3+
* Copyright (C) 2018-2024 - ZmartZone Holding BV
44
*
5-
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU Affero General Public License as
7-
* published by the Free Software Foundation, either version 3 of the
8-
* License, or (at your option) any later version.
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
98
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU Affero General Public License for more details.
9+
* http://www.apache.org/licenses/LICENSE-2.0
1410
*
15-
* You should have received a copy of the GNU Affero General Public License
16-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
1716
*
1817
* @Author: Hans Zandbelt - [email protected]
1918
*

0 commit comments

Comments
 (0)