1 |
dashley |
71 |
//$Header$ |
2 |
|
|
//------------------------------------------------------------------------------------------------- |
3 |
|
|
//This file is part of "David T. Ashley's Shared Source Code", a set of shared components |
4 |
|
|
//integrated into many of David T. Ashley's projects. |
5 |
|
|
//------------------------------------------------------------------------------------------------- |
6 |
|
|
//This source code and any program in which it is compiled/used is provided under the MIT License, |
7 |
|
|
//reproduced below. |
8 |
|
|
//------------------------------------------------------------------------------------------------- |
9 |
|
|
//Permission is hereby granted, free of charge, to any person obtaining a copy of |
10 |
|
|
//this software and associated documentation files(the "Software"), to deal in the |
11 |
|
|
//Software without restriction, including without limitation the rights to use, |
12 |
|
|
//copy, modify, merge, publish, distribute, sublicense, and / or sell copies of the |
13 |
|
|
//Software, and to permit persons to whom the Software is furnished to do so, |
14 |
|
|
//subject to the following conditions : |
15 |
|
|
// |
16 |
|
|
//The above copyright notice and this permission notice shall be included in all |
17 |
|
|
//copies or substantial portions of the Software. |
18 |
|
|
// |
19 |
|
|
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
20 |
|
|
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
21 |
|
|
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE |
22 |
|
|
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
23 |
|
|
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
24 |
|
|
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
25 |
|
|
//SOFTWARE. |
26 |
|
|
//------------------------------------------------------------------------------------------------- |
27 |
|
|
#define MODULE_BUILD_CONFIG |
28 |
|
|
|
29 |
|
|
#include "build_config.h" |
30 |
|
|
|
31 |
|
|
/* Statically embedded script to display opening message when |
32 |
|
|
** tool starts up. |
33 |
|
|
*/ |
34 |
|
|
char *BUILD_CONFIG_StartupMessageScript = |
35 |
|
|
"puts stderr \"% ------------------------------------------------------------------------\"\n" |
36 |
|
|
"puts stderr \"% $" BUILD_CONFIG_PRODUCT_NAME_VARIABLE |
37 |
|
|
", v$" |
38 |
|
|
BUILD_CONFIG_PRODUCT_VERSION_VARIABLE |
39 |
|
|
", " |
40 |
|
|
BUILD_CONFIG_RELEASE_YEAR ". This is an open-source script inter-\"\n" |
41 |
|
|
"puts stderr \"% preter tailored for embedded product software builds, based on Tcl/Tk\"\n" |
42 |
|
|
"puts stderr \"% 8.3.1 originally from Scriptics (www.scriptics.com), plus generous\"\n" |
43 |
|
|
"puts stderr \"% contributions of ideas, software, software components, and documentation\"\n" |
44 |
|
|
"puts stderr \"% from many others. For a full list of contributors and contact infor-\"\n" |
45 |
|
|
"puts stderr \"% mation, type \\\"credits\\\", or type \\\"exit\\\" to end. This product is licensed\"\n" |
46 |
|
|
"puts stderr \"% under the GNU Public License (GPL), and this product and its source code\"\n" |
47 |
|
|
"puts stderr \"% can be downloaded without cost from http://ijutools.sourceforge.net.\"\n" |
48 |
|
|
"puts stderr \"% ------------------------------------------------------------------------\"\n" |
49 |
|
|
; |
50 |
|
|
|
51 |
|
|
|
52 |
|
|
/* Standard identification string for message boxes displayed in |
53 |
|
|
** response to HELP->ABOUT. This part of the identification string |
54 |
|
|
** is the long paragraph after the specific component identification. |
55 |
|
|
*/ |
56 |
|
|
const char *BUILD_CONFIG_HelpAboutMsgIdString = |
57 |
|
|
"This program is a component of The ESRG Tool Set, Version " BUILD_CONFIG_RELEASE_VERSION ". \n" |
58 |
|
|
"This tool set is free software distributed under the GNU GPL. This\n" |
59 |
|
|
"tool set, any of its components, and its source code may be\n" |
60 |
|
|
"distributed without restriction provided that no fee is charged and\n" |
61 |
|
|
"no changes are made without also changing program titles and\n" |
62 |
|
|
"identification strings so as to prevent confusion with official\n" |
63 |
|
|
"releases of The ESRG Tool Set. Please see the license (included\n" |
64 |
|
|
"with the tool set) for all details.\n" |
65 |
|
|
"\n" |
66 |
|
|
"Please send any bug reports or suggestions for ehnacements to\n" |
67 |
|
|
"toolbugs@esrg.org. Note that there are no plans to support Unicode,\n" |
68 |
|
|
"because not all Windows flavors support it, and the increased tool\n" |
69 |
|
|
"complexity is not justified by the benefit."; |
70 |
|
|
|
71 |
|
|
/* End of build_config.c */ |