]>
Commit | Line | Data |
---|---|---|
1 | #ifndef CONFIG_H | |
2 | #define CONFIG_H | |
3 | @TOP@ | |
4 | ||
5 | /* Name of package. */ | |
6 | #undef PACKAGE | |
7 | ||
8 | /* Version of package. */ | |
9 | #undef VERSION | |
10 | ||
11 | /* Version string. */ | |
12 | #undef VERSION_STRING | |
13 | ||
14 | /* Define if the compiler understands prototypes. */ | |
15 | #undef PROTOTYPES | |
16 | ||
17 | /* Define to 1 if NLS is requested. */ | |
18 | #undef ENABLE_NLS | |
19 | ||
20 | /* Define as 1 if you have catgets and don't want to use GNU gettext. */ | |
21 | #undef HAVE_CATGETS | |
22 | ||
23 | /* Define as 1 if you have gettext and don't want to use GNU gettext. */ | |
24 | #undef HAVE_GETTEXT | |
25 | ||
26 | /* Define if your locale.h file contains LC_MESSAGES. */ | |
27 | #undef HAVE_LC_MESSAGES | |
28 | ||
29 | /* Define to 1 if you have the stpcpy function. */ | |
30 | #undef HAVE_STPCPY | |
31 | ||
32 | /* The location of the simple parser (bison.simple). */ | |
33 | #undef XPFILE | |
34 | ||
35 | /* The location of the semantic parser (bison.hairy). */ | |
36 | #undef XPFILE1 | |
37 | ||
38 | /* The location of the local directory. */ | |
39 | #undef LOCALEDIR | |
40 | ||
41 | /* Define as 1 if realloc must be declared even if <stdlib.h> is | |
42 | included. */ | |
43 | #undef NEED_DECLARATION_REALLOC | |
44 | ||
45 | /* Define as 1 if calloc must be declared even if <stdlib.h> is | |
46 | included. */ | |
47 | #undef NEED_DECLARATION_CALLOC | |
48 | @BOTTOM@ | |
49 | ||
50 | #if defined(PROTOTYPES) || defined(__cplusplus) | |
51 | # define PARAMS(p) p | |
52 | #else | |
53 | # define PARAMS(p) () | |
54 | #endif | |
55 | ||
56 | #endif /* CONFIG_H */ |