1
0
mirror of https://github.com/rofafor/vdr-plugin-femon.git synced 2023-10-10 13:36:53 +02:00

Updated for vdr-1.5.8.

This commit is contained in:
Rolf Ahrenberg 2007-08-19 04:20:00 +03:00
parent bf02f334f6
commit c8c639be62
5 changed files with 12 additions and 6 deletions

View File

@ -256,3 +256,7 @@ VDR Plugin 'femon' Revision History
2007-08-14: Version 1.2.0
- Updated for vdr-1.5.7.
2007-08-19: Version 1.2.1
- Updated for vdr-1.5.8.

View File

@ -67,6 +67,10 @@ all-redirect: all
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femontools.o
### The main target:
all: libvdr-$(PLUGIN).so i18n
### Implicit rules:
%.o: %.c
@ -103,13 +107,11 @@ i18n: $(I18Nmo)
@mkdir -p $(LOCALEDIR)
for i in $(I18Ndirs); do\
mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\
cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/$(PLUGIN).mo;\
cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/vdr-$(PLUGIN).mo;\
done
### Targets:
all: libvdr-$(PLUGIN).so i18n
libvdr-$(PLUGIN).so: $(OBJS)
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
ifndef FEMON_DEBUG

View File

@ -14,11 +14,11 @@
#include "femonservice.h"
#include "femontools.h"
#if defined(APIVERSNUM) && APIVERSNUM < 10507
#error "VDR-1.5.7 API version or greater is required!"
#if defined(APIVERSNUM) && APIVERSNUM < 10508
#error "VDR-1.5.8 API version or greater is required!"
#endif
static const char VERSION[] = "1.2.0";
static const char VERSION[] = "1.2.1";
static const char DESCRIPTION[] = trNOOP("DVB Signal Information Monitor (OSD)");
static const char MAINMENUENTRY[] = trNOOP("Signal Information");

Binary file not shown.