1 |
// This file will be processed by SCons and output as config.h. |
2 |
// Don't edit this file unless it's named 'config.h.in' unless |
3 |
// it doesn't bother you that your changes will be IGNORED! |
4 |
|
5 |
#ifndef ASC_CONFIG_H |
6 |
#define ASC_CONFIG_H |
7 |
|
8 |
#define ASC_DEFAULTPATH "@DEFAULT_ASCENDLIBRARY@" |
9 |
#define ASC_DATADIR "@INSTALL_DATA@" |
10 |
|
11 |
/* |
12 |
This is the location of the 'dist dir' relative to the location of the |
13 |
running executable. When ASC_RELATIVE_PATHS is set, this will be used to |
14 |
guess the location for ASCEND's data files. A good value is |
15 |
|
16 |
.. |
17 |
|
18 |
but in /usr or /usr/local installations, a better value is |
19 |
|
20 |
../share/ascend |
21 |
*/ |
22 |
#define ASC_DISTDIR_REL_BIN "@ASC_DISTDIR_REL_BIN@" |
23 |
|
24 |
#define ASC_RELATIVE_PATHS |
25 |
|
26 |
/* |
27 |
This is the default location of the tcl/tk scripts. $AAAAA environment |
28 |
variables will be expanded at runtime, so a good value for example is |
29 |
|
30 |
$ASCENDDIST/TK |
31 |
*/ |
32 |
#define ASC_ENV_TK_DEFAULT "@ASC_ENV_TK_DEFAULT@" |
33 |
|
34 |
/* |
35 |
The following are the environment variables ASCEND requires. |
36 |
If the user does not have the ASC_ENV_DIST set in his or her |
37 |
environment, a default value is set based on the directory where the |
38 |
ascend binary lives. The other environment variables will be set |
39 |
to default values keyed off of ASC_ENV_DIST. See the function |
40 |
CheckEnvironmentVars later in this file for the details. |
41 |
*/ |
42 |
#define ASC_ENV_DIST "ASCENDDIST" |
43 |
#define ASC_ENV_TK "ASCENDTK" |
44 |
#define ASC_ENV_BITMAPS "ASCENDBITMAPS" |
45 |
#define ASC_ENV_LIBRARY "ASCENDLIBRARY" |
46 |
#endif |