diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | sleeptimer.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -20,7 +20,7 @@ APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDI ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual +CXXFLAGS ?= -fPIC -O2 -Wall -Werror=overloaded-virtual ### The directory environment: diff --git a/debian/changelog b/debian/changelog index d15ec0c..e93b8d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +vdr-plugin-sleeptimer (0.8.3-201205011141dev) experimental; urgency=low + + * added missing include to i18n.h. thanx to nox again + * changed -Woverloaded-virtual to -Werror=overloaded-virtual in Makefile + + -- Midas <vdrportal_midas <at> gmx <dot> de> Tue, 01 May 2012 11:41:30 +0200 + vdr-plugin-sleeptimer (0.8.3-DEV) experimental; urgency=low * Non-maintainer upload. diff --git a/sleeptimer.c b/sleeptimer.c index fb8d8cd..43696fd 100644 --- a/sleeptimer.c +++ b/sleeptimer.c @@ -19,7 +19,7 @@ #define COMMANDLENGTH 512 #endif -static const char *VERSION = "0.8.3-WIP201205011120"; +static const char *VERSION = "0.8.3-201205011141dev"; static const char *DESCRIPTION = "Sleeptimer for VDR"; static const char *MAINMENUENTRY = tr("Sleeptimer"); |