summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-04-19 17:31:41 (GMT)
committerSven Nierlein <sven@nierlein.de>2018-10-22 14:30:31 (GMT)
commitf99b9352d4f6f7d33fc53443228390d1df08c3a1 (patch)
tree4b24f1cef6cbfb66cdc403d6856ea45d72eec45e
parent260291c08bcba4335755c556802d0591b7580b34 (diff)
downloadmonitoring-plugins-f99b9352d4f6f7d33fc53443228390d1df08c3a1.tar.gz
for now we set LIBCURL_USES_OPENSSL always
-rw-r--r--plugins/check_curl.c3
1 files changed, 3 insertions, 0 deletions
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";
49#include "curl/curl.h" 49#include "curl/curl.h"
50#include "curl/easy.h" 50#include "curl/easy.h"
51 51
52/* TODO: probe this one, how!? */
53#define LIBCURL_USES_OPENSSL
54
52#include "picohttpparser.h" 55#include "picohttpparser.h"
53 56
54#define MAKE_LIBCURL_VERSION(major, minor, patch) ((major)*0x10000 + (minor)*0x100 + (patch)) 57#define MAKE_LIBCURL_VERSION(major, minor, patch) ((major)*0x10000 + (minor)*0x100 + (patch))