Added a recommendation for using libcurl version >= 7.36.0.

This commit is contained in:
Rolf Ahrenberg 2014-04-06 00:45:52 +03:00
parent f46d07a95f
commit 388543a58d
2 changed files with 6 additions and 9 deletions

11
README
View File

@ -14,7 +14,7 @@ See the file COPYING for more information.
Requirements: 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/ http://curl.haxx.se/libcurl/
- PugiXML - Light-weight, simple and fast XML parser for C++ - PugiXML - Light-weight, simple and fast XML parser for C++
@ -23,7 +23,7 @@ Requirements:
TinyXML - a simple, small, C++ XML parser TinyXML - a simple, small, C++ XML parser
http://www.grinninglizard.com/tinyxml/ http://www.grinninglizard.com/tinyxml/
- VDR-2.1.4+ for scrambled channels - VDR >= 2.1.4 for scrambled channels
Description: Description:
@ -108,13 +108,6 @@ Notes:
direct access to any DVB card devices. The integrated CAM slot in direct access to any DVB card devices. The integrated CAM slot in
Octopus Net devices isn't supported. 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: Acknowledgements:
- Big thanks to Digital Devices GmbH for providing the Octopus Net - Big thanks to Digital Devices GmbH for providing the Octopus Net

View File

@ -13,6 +13,10 @@
#include "discover.h" #include "discover.h"
#include "setup.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 #if defined(APIVERSNUM) && APIVERSNUM < 20000
#error "VDR-2.0.0 API version or greater is required!" #error "VDR-2.0.0 API version or greater is required!"
#endif #endif