00001 /* 00002 * $Id$ 00003 * 00004 * Copyright (C) 2010 iptelorg GmbH 00005 * 00006 * Permission to use, copy, modify, and distribute this software for any 00007 * purpose with or without fee is hereby granted, provided that the above 00008 * copyright notice and this permission notice appear in all copies. 00009 * 00010 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 00011 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 00012 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 00013 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 00014 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 00015 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 00016 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 00017 */ 00022 /* 00023 * History: 00024 * -------- 00025 * 2010-07-13 initial version (andrei) 00026 */ 00027 00028 #include "ver_defs.h" 00029 #include "autover.h" /* REPO_VER, REPO_STATE */ 00030 00031 00032 const char full_version[] = SER_FULL_VERSION " " REPO_VER; 00033 const char ver_name[] = NAME; 00034 const char ver_version[] = VERSION; 00035 const char ver_arch[] = ARCH; 00036 const char ver_os[] = OS_QUOTED; 00037 const char ver_id[] = REPO_HASH " " REPO_STATE; 00038 const char ver_compiled_time[] = __TIME__ " " __DATE__ ; 00039 const char ver_compiler[] = COMPILER; 00040 00041 const char ver_flags[] = SER_COMPILE_FLAGS; 00042 00044 const char repo_ver[] = REPO_VER; 00046 const char repo_hash[] = REPO_HASH; 00048 const char repo_state[] = REPO_STATE; 00049 00050 /* vi: set ts=4 sw=4 tw=79:ai:cindent: */
1.7.1