From 805964b6aecc651e508bd9eb66b2421343652437 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 17 Jan 2014 01:55:04 +0500 Subject: [PATCH] fold version macros into runtime functions to avoid cascade rebuilds when modifying the core --- src/switch_version.c | 47 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/switch_version.c diff --git a/src/switch_version.c b/src/switch_version.c new file mode 100644 index 0000000000..604973c73a --- /dev/null +++ b/src/switch_version.c @@ -0,0 +1,47 @@ +/* + * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application + * Copyright (C) 2005-2012, Anthony Minessale II + * + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application + * + * The Initial Developer of the Original Code is + * Anthony Minessale II + * Portions created by the Initial Developer are Copyright (C) + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Anthony Minessale II + * Michael Jerris + * Paul D. Tinsley + * Marcel Barbulescu + * Joseph Sullivan + * Seven Du + * + * switch_version.c -- Version Functions + * + */ +#include +#include + +SWITCH_DECLARE(const char *)switch_version_major(void) {return SWITCH_VERSION_MAJOR;} +SWITCH_DECLARE(const char *)switch_version_minor(void) {return SWITCH_VERSION_MINOR;} +SWITCH_DECLARE(const char *)switch_version_micro(void) {return SWITCH_VERSION_MICRO;} + +SWITCH_DECLARE(const char *)switch_version_revision(void) {return SWITCH_VERSION_REVISION;} +SWITCH_DECLARE(const char *)switch_version_revision_human(void) {return SWITCH_VERSION_REVISION_HUMAN;} +SWITCH_DECLARE(const char *)switch_version_full(void) {return SWITCH_VERSION_FULL;} +SWITCH_DECLARE(const char *)switch_version_full_human(void) {return SWITCH_VERSION_FULL_HUMAN;} +