-
-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set memory alignment of shm cache structs to 64 bytes
see #1067; should fix running on Raspberry PI / ARMv7 32 bits (arm32v7); bump to 2.4.15rc13 Signed-off-by: Hans Zandbelt <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AC_INIT([mod_auth_openidc],[2.4.15rc12],[[email protected]]) | ||
AC_INIT([mod_auth_openidc],[2.4.15rc13],[[email protected]]) | ||
|
||
AC_SUBST(NAMEVER, AC_PACKAGE_TARNAME()-AC_PACKAGE_VERSION()) | ||
|
||
|
@@ -154,6 +154,11 @@ AM_CONDITIONAL(HAVE_LIBHIREDIS, [test x"$HAVE_LIBHIREDIS" = "x1"]) | |
AC_SUBST(HIREDIS_CFLAGS) | ||
AC_SUBST(HIREDIS_LIBS) | ||
|
||
PKG_CHECK_MODULES([HIREDIS_SSL], [hiredis_ssl], [HAVE_LIBHIREDIS_SSL=1], [HAVE_LIBHIREDIS_SSL=0]) | ||
AM_CONDITIONAL(HAVE_LIBHIREDIS_SSL, [test x"$HAVE_LIBHIREDIS_SSL" = "x1"]) | ||
AC_SUBST(HIREDIS_SSL_CFLAGS) | ||
AC_SUBST(HIREDIS_SSL_LIBS) | ||
|
||
# JQ | ||
HAVE_LIBJQ=0 | ||
|
||
|
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