https://bz.apache.org/bugzilla/show_bug.cgi?id=62266
Rainer Jung <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from Rainer Jung <[email protected]> --- This seems to be a cmake specific problem. Our CMakefile lacks adding modules/md to the includes. The unix build files work. You might want to test the following slight adjustment for the file CMakeLists.txt in the top level source directory: Index: CMakeLists.txt =================================================================== --- CMakeLists.txt (revision 1828523) +++ CMakeLists.txt (working copy) @@ -649,6 +649,7 @@ ${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 I'm not sure, whether this is the right fix for cmake, but at least it should work. Let us know your experience with it. Regards, Rainer -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
