diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-04-14 00:16:51 +0300 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2012-04-14 00:16:51 +0300 |
commit | e1d229da6a962bbe2dcbdbbd0f0baf2d01887b76 (patch) | |
tree | f8fff5b806d4d502864b74725318dfd1c2d7a104 | |
parent | 42a70272e25e39a67438ae57cf2ec27338f5244e (diff) | |
download | vdr-plugin-epgfixer-e1d229da6a962bbe2dcbdbbd0f0baf2d01887b76.tar.gz vdr-plugin-epgfixer-e1d229da6a962bbe2dcbdbbd0f0baf2d01887b76.tar.bz2 |
Fix plugin version. Makefile improvements.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | epgfixer.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -17,7 +17,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -g -O3 -Wall -Woverloaded-virtual -Wno-parentheses +CXXFLAGS ?= -g -O3 -Wall -Werror=overloaded-virtual -Wno-parentheses ### The directory environment: @@ -95,7 +95,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<see README>' -o $@ $^ + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name='vdr-$(PLUGIN)' --package-version='$(VERSION)' --msgid-bugs-address='<see README>' -o $@ `ls $^` %.po: $(I18Npot) msgmerge -U --no-wrap --no-location --backup=none -q $@ $< @@ -15,7 +15,7 @@ #error "VDR-1.7.26 API version or greater is required!" #endif -static const char *VERSION = "0.0.3"; +static const char *VERSION = "0.0.5"; static const char *DESCRIPTION = trNOOP("Fix bugs in EPG"); class cPluginEpgfixer : public cPlugin { |