mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Added a recommendation for using libcurl version >= 7.36.0.
This commit is contained in:
parent
f46d07a95f
commit
388543a58d
11
README
11
README
@ -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
|
||||||
|
4
satip.c
4
satip.c
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user