From: Michael Jerris Date: Sun, 19 Aug 2007 01:00:34 +0000 (+0000) Subject: Make version string have major, minor, and micro version. X-Git-Tag: v1.0-beta1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3887a1813e5c5fb58d1c564b28dbaaebd6760723;p=thirdparty%2Ffreeswitch.git 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 --- diff --git a/src/include/switch_version.h.in b/src/include/switch_version.h.in index a2a78f4b91..b2ef713585 100644 --- a/src/include/switch_version.h.in +++ b/src/include/switch_version.h.in @@ -39,8 +39,9 @@ extern "C" { #define SWITCH_VERSION_MAJOR "1" #define SWITCH_VERSION_MINOR "0" +#define SWITCH_VERSION_MICRO "pre1" #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 }