00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 2005, Digium, Inc. 00005 * 00006 * Kevin P. Fleming <kpfleming@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 /*! \file 00020 * 00021 * \brief Build timestamp variables 00022 * 00023 * \author Kevin P. Fleming <kpfleming@digium.com> 00024 */ 00025 00026 #include "asterisk/build.h" 00027 00028 const char *ast_build_hostname = BUILD_HOSTNAME; 00029 const char *ast_build_kernel = BUILD_KERNEL; 00030 const char *ast_build_machine = BUILD_MACHINE; 00031 const char *ast_build_os = BUILD_OS; 00032 const char *ast_build_date = BUILD_DATE; 00033 const char *ast_build_user = BUILD_USER;