diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2017-04-19 19:31:41 +0200 |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2018-10-22 16:30:31 +0200 |
commit | f99b9352d4f6f7d33fc53443228390d1df08c3a1 (patch) | |
tree | 4b24f1cef6cbfb66cdc403d6856ea45d72eec45e /plugins | |
parent | 260291c08bcba4335755c556802d0591b7580b34 (diff) | |
download | monitoring-plugins-f99b9352d4f6f7d33fc53443228390d1df08c3a1.tar.gz |
for now we set LIBCURL_USES_OPENSSL always
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_curl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index b5137129..5aee165b 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)) |