From 388543a58db7fd9fbb904ef18fd09e42096ffb8a Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sun, 6 Apr 2014 00:45:52 +0300 Subject: [PATCH] Added a recommendation for using libcurl version >= 7.36.0. --- README | 11 ++--------- satip.c | 4 ++++ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/README b/README index 1692f8b..7fae2eb 100644 --- a/README +++ b/README @@ -14,7 +14,7 @@ See the file COPYING for more information. Requirements: -- Libcurl - the multiprotocol file transfer library with RTSP support +- Libcurl >= 7.36.0 - the multiprotocol file transfer library with RTSP support http://curl.haxx.se/libcurl/ - PugiXML - Light-weight, simple and fast XML parser for C++ @@ -23,7 +23,7 @@ Requirements: TinyXML - a simple, small, C++ XML parser http://www.grinninglizard.com/tinyxml/ -- VDR-2.1.4+ for scrambled channels +- VDR >= 2.1.4 for scrambled channels Description: @@ -108,13 +108,6 @@ Notes: direct access to any DVB card devices. The integrated CAM slot in Octopus Net devices isn't supported. -- The 100% compliance against SAT>IP specification 1.2 requires a - patched VDR providing channel configuration for pilot, T2 system id, - and SISO/MISO values. - -- If you're using Triax TSS400, you'll need the libcurl from 2013-03-20 - or newer. - Acknowledgements: - Big thanks to Digital Devices GmbH for providing the Octopus Net diff --git a/satip.c b/satip.c index 0933c1d..c0b56be 100644 --- a/satip.c +++ b/satip.c @@ -13,6 +13,10 @@ #include "discover.h" #include "setup.h" +#if defined(LIBCURL_VERSION_NUM) && LIBCURL_VERSION_NUM < 0x072400 +#warning "CURL version >= 0.7.36 is recommended" +#endif + #if defined(APIVERSNUM) && APIVERSNUM < 20000 #error "VDR-2.0.0 API version or greater is required!" #endif