Skip to content

Commit

Permalink
v4.0.0: change LICENSE to Apache 2.0
Browse files Browse the repository at this point in the history
depend on liboauth2 >= 2.0.0

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Aug 22, 2024
1 parent d61664d commit 44abfb4
Show file tree
Hide file tree
Showing 6 changed files with 205 additions and 686 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
08/22/2024
- change LICENSE to Apache 2.0
- depend on liboauth2 >= 2.0.0
- release 4.0.0

06/21/2024
- Makefile.am: use pkglib_LTLIBRARIES

Expand Down
836 changes: 176 additions & 660 deletions LICENSE

Large diffs are not rendered by default.

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.5.0],[[email protected]])
AC_INIT([ngx_sts_module],[4.0.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.6.2])
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 2.0.0])
AC_SUBST(OAUTH2_CFLAGS)
AC_SUBST(OAUTH2_LIBS)

PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 1.6.2])
PKG_CHECK_MODULES(OAUTH2_NGINX, [liboauth2_nginx >= 2.0.0])
AC_SUBST(OAUTH2_NGINX_CFLAGS)
AC_SUBST(OAUTH2_NGINX_LIBS)

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

0 comments on commit 44abfb4

Please sign in to comment.