1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 11:37:42 +00:00

Changed code to utilize a proper XML library, refactored the session code, fxed EIT scan functionality, and updated for vdr-2.1.6.

This commit is contained in:
Rolf Ahrenberg
2014-03-16 19:58:09 +02:00
parent 497b1893db
commit dfbb3515ef
13 changed files with 111 additions and 43 deletions

View File

@@ -6,6 +6,10 @@
#SATIP_DEBUG = 1
# Use TinyXML instead of PugiXML
#SATIP_USE_TINYXML = 1
# Strip debug symbols? Set eg. to /bin/true if not
STRIP = strip
@@ -64,6 +68,13 @@ INCLUDES +=
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
ifdef SATIP_USE_TINYXML
DEFINES += -DUSE_TINYXML
LIBS += -ltinyxml
else
LIBS += -lpugixml
endif
ifdef SATIP_DEBUG
DEFINES += -DDEBUG
endif