Skip to content

Commit

Permalink
* Fixed the Makefile to include the test module in the distribution,…
Browse files Browse the repository at this point in the history
… so that

   tests can be build an run from the tar file. Fixes #210.
  • Loading branch information
Stefan Eissing committed Apr 26, 2021
1 parent 0af1e4b commit d432cd7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.15.19
--------------------------------------------------------------------------------
* Fixed the Makefile to include the test module in the distribution, so that
tests can be build an run from the tar file. Fixes #210.

v1.15.18
--------------------------------------------------------------------------------
* Fixed a race condition that could lead to streams being aborted
Expand Down
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ DIST_SUBDIRS = mod_http2

ACLOCAL_AMFLAGS = -I m4

EXTRA_DIST = test/e2e test/unit test/Makefile.in test/Makefile.am
EXTRA_DIST = test/e2e test/unit test/Makefile.in test/Makefile.am \
test/mod_h2test/Makefile.am \
test/mod_h2test/mod_h2test.c \
test/mod_h2test/mod_h2test.h


dist_doc_DATA = README README.md LICENSE
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#

AC_PREREQ([2.69])
AC_INIT([mod_http2], [1.15.18], [[email protected]])
AC_INIT([mod_http2], [1.15.19], [[email protected]])

LT_PREREQ([2.2.6])
LT_INIT()
Expand Down
4 changes: 2 additions & 2 deletions mod_http2/h2_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
* @macro
* Version number of the http2 module as c string
*/
#define MOD_HTTP2_VERSION "1.15.18-git"
#define MOD_HTTP2_VERSION "1.15.19-git"

/**
* @macro
* Numerical representation of the version number of the http2 module
* release. This is a 24 bit number with 8 bits for major number, 8 bits
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
*/
#define MOD_HTTP2_VERSION_NUM 0x010f12
#define MOD_HTTP2_VERSION_NUM 0x010f13


#endif /* mod_h2_h2_version_h */

0 comments on commit d432cd7

Please sign in to comment.