Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/1.3.12-pre3'
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFrench committed Jul 24, 2017
2 parents 4c9b3dd + 8342e60 commit 343c48b
Show file tree
Hide file tree
Showing 4 changed files with 290 additions and 152 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,17 @@ endif()

if (NOT HAVE_SYS_TREE)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/compat/sys/tree.h.in
${CMAKE_CURRENT_BINARY_DIR}/compat/sys/tree.h)
${PROJECT_BINARY_DIR}/compat/sys/tree.h)

include_directories(${PROJECT_BINARY_DIR}/compat)

endif(NOT HAVE_SYS_TREE)

if (NOT HAVE_SYS_QUEUE)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/compat/sys/queue.h.in
${CMAKE_CURRENT_BINARY_DIR}/compat/sys/queue.h)
${PROJECT_BINARY_DIR}/compat/sys/queue.h)

include_directories(${PROJECT_BINARY_DIR}/compat)
endif(NOT HAVE_SYS_QUEUE)

if (NOT HAVE_STRNDUP)
Expand Down
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
v1.3.12-pre3
o use PROJECT_BINARY_DIR for sys/ compat headers (012341c Nathan French)
o return int for htp__path_new_ (bf59eb1 Nathan French)
o more return normalization (91008a6 Nathan French)
o allocation functions set *out to NULL (0305c10 Nathan French)
o do not return on error from requie_uri (ddc2ce6 Nathan French)
o added user-defined custom memory functions (73b54c6 Nathan French)
o for some reason, htparser_init was being called manually with type_request?? (a153e5f Nathan French)
o Add htp__strndup_ memfn wrapper (763168c Nathan French)
o add a callback member in evhtp_ssl_cfg_t for customized decrypt privfile. fixes #16 (b3a4d42 h00360646)

v1.2.12-pre2
o Internalize some structs / deprecate evhtp_set_hook() (50ab327 Nathan French)
o remove cruft (1b1a037 Nathan French)
Expand Down
Loading

0 comments on commit 343c48b

Please sign in to comment.