-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
push diary, cache digest, http2-status handler
- Loading branch information
Stefan Eissing
committed
Jan 15, 2016
1 parent
4dde268
commit a09062f
Showing
22 changed files
with
1,779 additions
and
529 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([mod_http2], [1.1.0], [[email protected]]) | ||
AC_INIT([mod_http2], [1.2.0], [[email protected]]) | ||
|
||
LT_PREREQ([2.2.6]) | ||
LT_INIT() | ||
|
@@ -130,6 +130,12 @@ AC_CHECK_FUNCS([nghttp2_stream_get_weight], | |
AC_CHECK_FUNCS([nghttp2_session_change_stream_priority], | ||
[CPPFLAGS="$CPPFLAGS -DH2_NG2_CHANGE_PRIO"], []) | ||
|
||
|
||
AC_CHECK_LIB([crypto], [SHA256_Init], [ | ||
CPPFLAGS="$CPPFLAGS -DH2_OPENSSL" | ||
LIBS="$LIBS -lcrypto"], | ||
[AC_MSG_ERROR("libcrypto not found")]) | ||
|
||
# Checks for header files. | ||
AC_CHECK_HEADERS([ \ | ||
assert.h \ | ||
|
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
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
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
Oops, something went wrong.
a09062f
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.
a09062f
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.