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