One more. This should be the last before 1.4.
ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.48.tar.bz2This one needs a patch to the VOMP server plugin:
--- Makefile.old 2006-02-27 16:39:10.000000000 +0000
+++ Makefile 2006-04-23 15:36:57.000000000 +0100
@@ -32,6 +32,10 @@
### 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')
+ifeq ($(strip $(APIVERSION)),)
+ APIVERSION = $(VDRVERSION)
+endif
### The name of the distribution archive:
@@ -75,7 +79,7 @@
libvdr-$(PLUGIN).so: $(OBJS) libdvbmpeg/libdvbmpegtools.a
$(CXX) $(CXXFLAGS) -shared $(OBJS) libdvbmpeg/libdvbmpegtools.a -o $@
- @cp $@ $(LIBDIR)/$@.$(VDRVERSION)
+ @cp $@ $(LIBDIR)/$@.$(APIVERSION)
dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
The patched Makefile is compatible with pre-1.3.48 vdr (tested on both 1.3.47 and 1.3.48).