diff options
author | James Booth <boothj5@gmail.com> | 2012-10-23 23:52:40 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-10-23 23:52:40 +0100 |
commit | a8e985144914681bb97d9f60a4487590a29c7b8a (patch) | |
tree | 99525ffc47b77a68dc41fc6a95ad5cccde62898a /src | |
parent | 1c2d99c007092d9cc2a844a62c10af34f8dcaff9 (diff) | |
download | profani-tty-a8e985144914681bb97d9f60a4487590a29c7b8a.tar.gz |
Added PACKAGE_STATUS to configure.ac
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/windows.c b/src/windows.c index 46b924ee..0d87c378 100644 --- a/src/windows.c +++ b/src/windows.c @@ -820,7 +820,12 @@ cons_about(void) _cons_splash_logo(); } else { _win_show_time(_cons_win); - wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION); + + if (strcmp(PACKAGE_STATUS, "dev") == 0) { + wprintw(_cons_win, "Welcome to Profanity, version %sdev\n", PACKAGE_VERSION); + } else { + wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION); + } } _win_show_time(_cons_win); @@ -858,7 +863,6 @@ _cons_splash_logo(void) _win_show_time(_cons_win); wprintw(_cons_win, "Welcome to\n"); - _win_show_time(_cons_win); wattron(_cons_win, COLOUR_OFFLINE); wprintw(_cons_win, " ___ _ \n"); @@ -897,7 +901,11 @@ _cons_splash_logo(void) _win_show_time(_cons_win); wprintw(_cons_win, "\n"); _win_show_time(_cons_win); - wprintw(_cons_win, "Version %s\n", PACKAGE_VERSION); + if (strcmp(PACKAGE_STATUS, "dev") == 0) { + wprintw(_cons_win, "Version %sdev\n", PACKAGE_VERSION); + } else { + wprintw(_cons_win, "Version %s\n", PACKAGE_VERSION); + } } static int |