diff options
| -rw-r--r-- | HISTORY | 3 | ||||
| -rw-r--r-- | Makefile | 6 |
2 files changed, 5 insertions, 4 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'image' Revision History ----------------------------------- +2006-04-18 +- Use now APIVERSION introduced with vdr-1.3.47 (Required) + 2006-01-29 - Remove unnecessary DVBDIR from Makefile - Rename README.de to LIESMICH @@ -62,9 +62,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The version number of VDR (taken from VDR's "config.h"): -VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') - - +APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g') ### The name of the distribution archive: @@ -143,7 +141,7 @@ all: subdirs libvdr-$(PLUGIN).so libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared -export-dynamic $(OBJS) $(LIBS) -o $@ - @cp $@ $(LIBDIR)/$@.$(VDRVERSION) + @cp $@ $(LIBDIR)/$@.$(APIVERSION) subdirs: |
