diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | Makefile | 14 |
2 files changed, 10 insertions, 7 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'image' Revision History ----------------------------------- +2010-03-06 +- Fix to compile plugins with VDR >= 1.7.13 (Thomas Günther, for summit a patch) + 2008-12-14 - Release Version 0.3.0 @@ -20,6 +20,12 @@ #FFMDIR = ../../../../ffmpeg +# The official name of this plugin. +# This name will be used in the '-P...' option of VDR to load the plugin. +# By default the main source file also carries this name. +# +PLUGIN = image + ### The C++ compiler and options: CXX ?= g++ @@ -44,12 +50,6 @@ TMPDIR = /tmp -include $(VDRDIR)/Make.config -# The official name of this plugin. -# This name will be used in the '-P...' option of VDR to load the plugin. -# By default the main source file also carries this name. -# -PLUGIN = image - ### The version number of this plugin (taken from the main source file): VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g') @@ -182,7 +182,7 @@ subdirs: @for i in $(SUBDIRS) ;\ do \ ( cd $$i;\ - $(MAKE) all;\ + $(MAKE) all PLUGIN=$(PLUGIN);\ ) \ || exit 1;\ done |