[Commits] : Tuxbox-GIT: apps branch master updated. CVS-Final-596-gf63448b
Tuxbox Sources
Brought to you by:
dbt1
|
From: GetAway <tux...@ne...> - 2015-06-03 14:44:40
|
Project "Tuxbox-GIT: apps":
The branch, master has been updated
via f63448b80a8b344b674c79b3edd7a2bb96e52bd2 (commit)
from cd8130fcbb66cf0ff3265d514f806a284338320b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f63448b80a8b344b674c79b3edd7a2bb96e52bd2
Author: GetAway <get...@t-...>
Date: Wed Jun 3 16:43:48 2015 +0200
deamons: change versioning
Signed-off-by: GetAway <get...@t-...>
diff --git a/dvb/zapit/src/zapit.cpp b/dvb/zapit/src/zapit.cpp
index 19cdb89..0f1423a 100644
--- a/dvb/zapit/src/zapit.cpp
+++ b/dvb/zapit/src/zapit.cpp
@@ -1,6 +1,4 @@
/*
- * $Id: zapit.cpp,v 1.463 2012/08/14 18:24:12 rhabarber1848 Exp $
- *
* zapit - d-box2 linux project
*
* (C) 2001, 2002 by Philipp Leusmann <fa...@be...>
@@ -88,6 +86,9 @@
#ifdef HAVE_TRIPLEDRAGON
#include <tdgfx/stb04gfx.h>
#endif
+
+#define ZAPIT_VERSION "1.464"
+
/* the conditional access module */
CCam *cam = NULL;
/* the configuration file */
@@ -3164,7 +3165,7 @@ void loadScanSettings(void)
int main(int argc, char **argv)
{
- fprintf(stdout, "$Id: zapit.cpp,v 1.463 2012/08/14 18:24:12 rhabarber1848 Exp $\n");
+ fprintf(stdout, "$Id: zapit.cpp, v%s\n", ZAPIT_VERSION);
bool check_lock = true;
int opt;
diff --git a/tuxbox/neutrino/daemons/timerd/timerd.cpp b/tuxbox/neutrino/daemons/timerd/timerd.cpp
index 592ae7d..907c522 100644
--- a/tuxbox/neutrino/daemons/timerd/timerd.cpp
+++ b/tuxbox/neutrino/daemons/timerd/timerd.cpp
@@ -4,8 +4,6 @@
Copyright (C) 2001 Steffen Hehn 'McClean'
Homepage: http://dbox.cyberphoria.org/
- $Id: timerd.cpp,v 1.67 2012/11/01 19:37:34 rhabarber1848 Exp $
-
License: GPL
This program is free software; you can redistribute it and/or modify
@@ -37,6 +35,8 @@
#include <connection/basicserver.h>
#include <timerdclient/timerdmsg.h>
+#define TIMERD_VERSION "1.68"
+
int timerd_debug = 0;
char *config_file_name = CONFIGFILE;
@@ -505,6 +505,8 @@ void usage(FILE *dest)
int main(int argc, char **argv)
{
+ fprintf(stdout, "$Id: timerd.cpp, v%s\n", TIMERD_VERSION);
+
bool do_fork = true;
dprintf("startup\n");
-----------------------------------------------------------------------
Summary of changes:
dvb/zapit/src/zapit.cpp | 7 ++++---
tuxbox/neutrino/daemons/timerd/timerd.cpp | 6 ++++--
2 files changed, 8 insertions(+), 5 deletions(-)
--
Tuxbox-GIT: apps
|