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 /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 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -8,10 +8,6 @@ HISTFILE = "HISTORY.h" include Make.config -# enable graphtftng and/or pin plugin support if autodetection below don't work -#WITH_GTFT = 1 -#WITH_PIN = 1 - ### The version number of this plugin (taken from the main source file): VERSION = $(shell grep 'define _VERSION ' $(HISTFILE) | awk '{ print $$3 }' | sed -e 's/[";]//g') @@ -71,8 +67,10 @@ OBJS = $(PLUGIN).o \ menu.o menusched.o menutimers.o menudone.o menusearchtimer.o LIBS = $(HLIB) -LIBS += -lrt -larchive -lcrypto -luuid -LIBS += $(shell mysql_config --libs_r) $(shell python-config --libs) $(shell pkg-config --cflags --libs jansson) +LIBS += -lrt -larchive -lcrypto +LIBS += $(shell pkg-config --libs uuid) +LIBS += $(shell pkg-config --libs tinyxml2) +LIBS += $(shell mysql_config --libs_r) $(shell python-config --libs) $(shell pkg-config --libs jansson) EPG2VDR_DATA_DIR = "/var/cache/vdr" @@ -84,6 +82,10 @@ ifdef WITH_PIN DEFINES += -DWITH_PIN endif +ifdef WITH_AUX_PATCH + DEFINES += -DWITH_AUX_PATCH +endif + ifdef EPG2VDR_DATA_DIR DEFINES += -DEPG2VDR_DATA_DIR='$(EPG2VDR_DATA_DIR)' endif |