]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge of r1866119 from trunk:
authorStefan Eissing <icing@apache.org>
Fri, 30 Aug 2019 07:15:08 +0000 (07:15 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 30 Aug 2019 07:15:08 +0000 (07:15 +0000)
cmake for mod_md: interim fix by bill.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1866121 13f79535-47bb-0310-9956-ffa450edef68

CMakeLists.txt

index 5e27162b0c146d033e39b137f8001b696ecb63a7..7a6c4b2651adf5b67d3560bcf1566afdbb2efc3f 100644 (file)
@@ -470,7 +470,9 @@ SET(mod_lua_extra_sources
   modules/lua/lua_vmprep.c           modules/lua/lua_dbd.c
 )
 SET(mod_lua_requires                 LUA51_FOUND)
-SET(mod_md_requires                  OPENSSL_FOUND CURL_FOUND JANSSON_FOUND HAVE_OPENSSL_102)
+# TODO: _requires does not currently iterate a list, substitute the following once it does;
+# SET(mod_md_requires                OPENSSL_FOUND CURL_FOUND JANSSON_FOUND HAVE_OPENSSL_102)
+SET(mod_md_requires                  CURL_FOUND)
 SET(mod_md_extra_includes            ${OPENSSL_INCLUDE_DIR} ${CURL_INCLUDE_DIR} ${JANSSON_INCLUDE_DIR})
 SET(mod_md_extra_libs                ${OPENSSL_LIBRARIES} ${CURL_LIBRARIES} ${JANSSON_LIBRARIES} mod_watchdog)
 SET(mod_md_extra_sources
@@ -705,6 +707,7 @@ SET(HTTPD_INCLUDE_DIRECTORIES
   ${CMAKE_CURRENT_SOURCE_DIR}/modules/session
   ${CMAKE_CURRENT_SOURCE_DIR}/modules/ssl
   ${CMAKE_CURRENT_SOURCE_DIR}/server
+  ${CMAKE_CURRENT_SOURCE_DIR}/server/mpm/winnt
   ${APR_INCLUDE_DIR}
   ${PCRE_INCLUDE_DIR}
 )