Hello all, There is a somewhat minimal untested support for compiling the modules for Apache Httpd in cmake. However, I found that the Unix version works in a fundamentally different way than Windows (that I was testing on initially); It appears there is no libhttpd in its package.
The recommended way to compile is to use the apxs tool [1]. 'make' does just call it. We could use it in cmake as well, but I believe it wouldn't be the optimal way in cmake. It would not respect the user specified compiler and other configurations. I rather think we should work around it and link all the required libs manually. Does anyone know where (and why) it puts all that code from libhttpd on a Unix build? I'm confused a little bit... [1] https://httpd.apache.org/docs/2.4/programs/apxs.html -- Timofei Zhakov

