From ea3f8c5d050192b06cab9eaf70e19b544c09b8c5 Mon Sep 17 00:00:00 2001 From: horchi Date: Thu, 23 Mar 2017 18:43:07 +0100 Subject: 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\n --- Makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 941a31e..c1030e8 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3