diff options
author | horchi <vdr@jwendel.de> | 2017-03-23 18:43:07 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-23 18:43:07 +0100 |
commit | ea3f8c5d050192b06cab9eaf70e19b544c09b8c5 (patch) | |
tree | ae50c481e279be57bf396cb35ca2167c4e71ac24 /lib/Makefile | |
parent | 4ce37758aa8e7ff1faea6aea5d19c953f89247b7 (diff) | |
download | vdr-plugin-epg2vdr-ea3f8c5d050192b06cab9eaf70e19b544c09b8c5.tar.gz vdr-plugin-epg2vdr-ea3f8c5d050192b06cab9eaf70e19b544c09b8c5.tar.bz2 |
2017-03-22 version 1.1.53 (horchi)\n - change: Removed old patches for vdr < 2.2.0\n - added: Patch to extend cEvent with aux field like cTimer\n - change: Moved user defines from Makefile to Make.config\n\n1.1.54
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 789bf93..5e4f4b3 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -12,7 +12,7 @@ HLIB = -L. -lhorchi DEMO = demo TEST = tst -LIBOBJS = common.o config.o db.o epgservice.o dbdict.o json.o +LIBOBJS = common.o config.o db.o epgservice.o dbdict.o json.o xml.o ifdef USEJPEG LIBOBJS += imgtools.o @@ -29,6 +29,7 @@ BASELIBS = -lrt BASELIBS += $(shell mysql_config --libs_r) BASELIBS += $(shell pkg-config --libs uuid) BASELIBS += $(shell pkg-config --libs zlib) +BASELIBS += $(shell pkg-config --libs tinyxml2) ifdef USECURL BASELIBS += -lcurl @@ -105,7 +106,8 @@ db.o : db.c $(HEADER) db.h epgservice.o : epgservice.c $(HEADER) epgservice.h dbdict.o : dbdict.c $(HEADER) dbdict.h json.o : json.c $(HEADER) json.h -python.o : python.c $(HEADER) python.h +xml.o : xml.c $(HEADER) xml.h +python.o : python.c $(HEADER) python.h searchtimer.o : searchtimer.c $(HEADER) searchtimer.h demo.o : demo.c $(HEADER) |