Module: monitoring-plugins Branch: feature_check_curl Commit: e67ac139fcf337fdc866676fed567236d7d35434 Author: Andreas Baumann <m...@andreasbaumann.cc> Date: Wed Apr 19 19:31:41 2017 +0200 URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=e67ac13
for now we set LIBCURL_USES_OPENSSL always --- plugins/check_curl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/check_curl.c b/plugins/check_curl.c index b513712..5aee165 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -49,6 +49,9 @@ const char *email = "devel@monitoring-plugins.org"; #include "curl/curl.h" #include "curl/easy.h" +/* TODO: probe this one, how!? */ +#define LIBCURL_USES_OPENSSL + #include "picohttpparser.h" #define MAKE_LIBCURL_VERSION(major, minor, patch) ((major)*0x10000 + (minor)*0x100 + (patch))