Calculate version string from configure.ac at compile time.

Also bump version from T.1.0-80 to T.81.0, as the leading 1.0 was useless.
This commit is contained in:
Felicity Tarnell 2014-03-05 15:28:24 +00:00
parent 5db1e9cdbb
commit 66c12e8e73
5 changed files with 29 additions and 13 deletions

9
tts.c
View file

@ -136,6 +136,8 @@ int c;
#define WSIZEOF(s) (sizeof(s) / sizeof(WCHAR))
extern char const *tts_version;
static volatile sig_atomic_t doexit;
static WINDOW *titwin, *statwin, *listwin;
@ -1555,8 +1557,13 @@ size_t nargs;
void
drawheader()
{
WCHAR title[64];
SNPRINTF(title, WSIZEOF(title), "TTS %s - Type '?' for help",
tts_version);
wmove(titwin, 0, 0);
waddstr(titwin, "TTS " PACKAGE_VERSION " - Type '?' for help");
waddstr(titwin, title);
if (itime > 0) {
WCHAR str[128];
int h, m, s;