-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release 3.4.0: depend on liboauth2 >= 1.6.2
Signed-off-by: Hans Zandbelt <[email protected]>
- Loading branch information
Showing
4 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ | |
/config.guess~ | ||
/config.sub~ | ||
/configure~ | ||
/install-sh~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([mod_oauth2],[3.3.2],[[email protected]]) | ||
AC_INIT([mod_oauth2],[3.4.0],[[email protected]]) | ||
|
||
AM_INIT_AUTOMAKE([foreign no-define subdir-objects]) | ||
AC_CONFIG_MACRO_DIRS([m4]) | ||
|
@@ -27,11 +27,11 @@ AC_SUBST(APR_LIBS) | |
AC_SUBST(APACHE_CFLAGS) | ||
AC_ARG_VAR(APXS_OPTS, [additional command line options to pass to apxs]) | ||
|
||
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.5.1]) | ||
PKG_CHECK_MODULES(OAUTH2, [liboauth2 >= 1.6.2]) | ||
AC_SUBST(OAUTH2_CFLAGS) | ||
AC_SUBST(OAUTH2_LIBS) | ||
|
||
PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.5.1]) | ||
PKG_CHECK_MODULES(OAUTH2_APACHE, [liboauth2_apache >= 1.6.2]) | ||
AC_SUBST(OAUTH2_APACHE_CFLAGS) | ||
AC_SUBST(OAUTH2_APACHE_LIBS) | ||
|
||
|
6600ced
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zandbelt Given that the only changes between liboauth2 1.6.1 and 1.6.2 are related to Nginx, am I right to assume that it would technically also work with 1.6.1? 😉
6600ced
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, you're right, I just wanted to update all modules across Apache and NGINX to the latest and greatest (and avoid version/dependency confusion in my head)