Merge branch 'bug_124_m2ts_support'
[enigma2.git] / main / version_info.cpp
1 #include "version_info.h"
2 #include "version.h"
3
4 #ifndef ENIGMA2_COMMIT_DATE
5 #define ENIGMA2_COMMIT_DATE __DATE__
6 #endif
7 const char *enigma2_date = ENIGMA2_COMMIT_DATE;
8
9 #ifndef ENIGMA2_BRANCH
10 #define ENIGMA2_BRANCH "(no branch)"
11 #endif
12 const char *enigma2_branch = ENIGMA2_BRANCH;
13
14 #ifndef ENIGMA2_REV
15 #define ENIGMA2_REV ""
16 #endif
17 const char *enigma2_rev = ENIGMA2_REV;
18