diff options
author | Midas <vdrportal_midas@gmx.de> | 2012-05-01 11:44:59 +0200 |
---|---|---|
committer | Midas <vdrportal_midas@gmx.de> | 2012-05-01 11:44:59 +0200 |
commit | 1bac452fda8c1a03de976549ca7cfa9f0311fd7d (patch) | |
tree | 82cbe9b6ba31e4cc066432f576912fe831a82ce5 | |
parent | 2e43e5365dc95f7d2a7814ccfd78cd05a9c64741 (diff) | |
download | vdr-plugin-sleeptimer-1bac452fda8c1a03de976549ca7cfa9f0311fd7d.tar.gz vdr-plugin-sleeptimer-1bac452fda8c1a03de976549ca7cfa9f0311fd7d.tar.bz2 |
changed -Woverloaded-virtual to -Werror=overloaded-virtual in Makefile
updated debian/changelog
increased version number
-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"); |