Make version string have major, minor, and micro version.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5609 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-08-19 01:00:34 +00:00
parent 77d753fe8b
commit 3887a1813e
1 changed files with 2 additions and 1 deletions

View File

@ -39,8 +39,9 @@ extern "C" {
#define SWITCH_VERSION_MAJOR "1" #define SWITCH_VERSION_MAJOR "1"
#define SWITCH_VERSION_MINOR "0" #define SWITCH_VERSION_MINOR "0"
#define SWITCH_VERSION_MICRO "pre1"
#define SWITCH_VERSION_REVISION "@SVN_VERSION@" #define SWITCH_VERSION_REVISION "@SVN_VERSION@"
#define SWITCH_VERSION_FULL SWITCH_VERSION_MAJOR "." SWITCH_VERSION_MINOR "." SWITCH_VERSION_REVISION #define SWITCH_VERSION_FULL SWITCH_VERSION_MAJOR "." SWITCH_VERSION_MINOR "." SWITCH_VERSION_MICRO " (" SWITCH_VERSION_REVISION ")"
#ifdef __cplusplus #ifdef __cplusplus
} }