From 93d0d178e77fceb5dd9ffc70e23edde656213097 Mon Sep 17 00:00:00 2001 From: Janosch Machowinski Date: Sun, 22 Mar 2015 21:30:36 +0100 Subject: [PATCH] Make a too low curl version a compile error, not a warning. As this is known to break with at least two SatIp server, a curl version > 7.36.00 should be a requirement, not a recommendation. --- satip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satip.c b/satip.c index c3652c1..d84ced2 100644 --- a/satip.c +++ b/satip.c @@ -16,7 +16,7 @@ #include "setup.h" #if defined(LIBCURL_VERSION_NUM) && LIBCURL_VERSION_NUM < 0x072400 -#warning "CURL version >= 7.36.0 is recommended" +#error "CURL version >= 7.36.0 is required" #endif #if defined(APIVERSNUM) && APIVERSNUM < 20200