From 24d84b5bd778fbd5d01021759dcc0f5c5132fe7b Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Mon, 9 Apr 2018 07:30:11 +0000 Subject: [PATCH] mod_ssl: Fix cmake-based build. modules/md/mod_md.h is now a new public API also used by other modules (currently mod_ssl), so it must be in the include path. It was missing for cmake builds. Note that this change does not yet enable building mod_md itself using cmake. That part is still missing. CTR (cmake builds only). Backport of r1828669 from trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1828670 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 2 ++ CMakeLists.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 810607ef81..dc1b2d28d5 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,8 @@ Changes with Apache 2.4.34 may be misreported or be logged as ASCII escapes. PR 62200 [Hank Ibell ] + *) mod_ssl: Fix cmake-based build. PR 62266. [Rainer Jung] + Changes with Apache 2.4.33 *) core: Fix request timeout logging and possible crash for error_log hooks. diff --git a/CMakeLists.txt b/CMakeLists.txt index a571061ba5..0bb196baa2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -649,6 +649,7 @@ SET(HTTPD_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}/modules/dav/main ${CMAKE_CURRENT_SOURCE_DIR}/modules/filters ${CMAKE_CURRENT_SOURCE_DIR}/modules/generators + ${CMAKE_CURRENT_SOURCE_DIR}/modules/md ${CMAKE_CURRENT_SOURCE_DIR}/modules/proxy ${CMAKE_CURRENT_SOURCE_DIR}/modules/session ${CMAKE_CURRENT_SOURCE_DIR}/modules/ssl -- 2.40.0