https://bz.apache.org/bugzilla/show_bug.cgi?id=65602

--- Comment #8 from Stefan Eissing <ic...@apache.org> ---
I am not a cmake export, but if you look at your logs, you see that '
jansson.lib' is appearing, but there is no 'curl.lib' anywhere to be seen.

If the linking is called without any curl.lib, it will fail obviously as you
describe with missing curl symbols.

Looking at CMakeList.txt, the linking of mod_md is defined with

SET(mod_md_extra_libs                ${OPENSSL_LIBRARIES} ${CURL_LIBRARIES}
${JANSSON_LIBRARIES} mod_watchdog)

so it seems that the Cmake variable $CURL_LIBRARIES is empty on your system.


As you mentioned, you seem to get this somewhat working by adding libcurl
*explicitly*:

#470 SET(mod_md_extra_libs                              ${OPENSSL_LIBRARIES}
${CURL_LIBRARIES} ${JANSSON_LIBRARIES} mod_watchdog libcurl)
...

Which means that you curl cmake setup is somehow wrong. This looks like a
problem on your system. It does not look like a bug in the Apache httpd
software.

If stackoverflow is not helpful, maybe you can find other cmake users on
https://www.apachelounge.com

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org

Reply via email to