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 | |
parent | 1c2d99c007092d9cc2a844a62c10af34f8dcaff9 (diff) | |
download | profani-tty-a8e985144914681bb97d9f60a4487590a29c7b8a.tar.gz |
Added PACKAGE_STATUS to configure.ac
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | src/windows.c | 14 |
2 files changed, 13 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 9e4b18c6..b7bbc7e2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,8 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([profanity], [0.1.9dev], [boothj5web@gmail.com]) +AC_INIT([profanity], [0.1.9], [boothj5web@gmail.com]) +AC_DEFINE([PACKAGE_STATUS], ["release"], [Status of this build]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_AUX_DIR([build-aux]) 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 |