1/* config.h.in.  Generated automatically from configure.in by autoheader.  */
2#ifndef CONFIG_H
3#define CONFIG_H
4
5/* Define if using alloca.c.  */
6#undef C_ALLOCA
7
8/* Define to empty if the keyword does not work.  */
9#undef const
10
11/* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
12   This function is required for alloca.c support on those systems.  */
13#undef CRAY_STACKSEG_END
14
15/* Define if you have alloca, as a function or macro.  */
16#undef HAVE_ALLOCA
17
18/* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
19#undef HAVE_ALLOCA_H
20
21/* Define if you have a working `mmap' system call.  */
22#undef HAVE_MMAP
23
24/* Define as __inline if that's what the C compiler calls it.  */
25#undef inline
26
27/* Define to `long' if <sys/types.h> doesn't define.  */
28#undef off_t
29
30/* Define if you need to in order for stat and other things to work.  */
31#undef _POSIX_SOURCE
32
33/* Define to `unsigned' if <sys/types.h> doesn't define.  */
34#undef size_t
35
36/* If using the C implementation of alloca, define if you know the
37   direction of stack growth for your system; otherwise it will be
38   automatically deduced at run-time.
39 STACK_DIRECTION > 0 => grows toward higher addresses
40 STACK_DIRECTION < 0 => grows toward lower addresses
41 STACK_DIRECTION = 0 => direction of growth unknown
42 */
43#undef STACK_DIRECTION
44
45/* Define if you have the ANSI C header files.  */
46#undef STDC_HEADERS
47
48/* Define if the X Window System is missing or not being used.  */
49#undef X_DISPLAY_MISSING
50
51/* Define to 1 if NLS is requested.  */
52#undef ENABLE_NLS
53
54/* Define as 1 if you have catgets and don't want to use GNU gettext.  */
55#undef HAVE_CATGETS
56
57/* Define as 1 if you have gettext and don't want to use GNU gettext.  */
58#undef HAVE_GETTEXT
59
60/* Define if your locale.h file contains LC_MESSAGES.  */
61#undef HAVE_LC_MESSAGES
62
63/* Define as 1 if you have the stpcpy function.  */
64#undef HAVE_STPCPY
65
66/* Define if you have the __argz_count function.  */
67#undef HAVE___ARGZ_COUNT
68
69/* Define if you have the __argz_next function.  */
70#undef HAVE___ARGZ_NEXT
71
72/* Define if you have the __argz_stringify function.  */
73#undef HAVE___ARGZ_STRINGIFY
74
75/* Define if you have the dcgettext function.  */
76#undef HAVE_DCGETTEXT
77
78/* Define if you have the getcwd function.  */
79#undef HAVE_GETCWD
80
81/* Define if you have the getpagesize function.  */
82#undef HAVE_GETPAGESIZE
83
84/* Define if you have the munmap function.  */
85#undef HAVE_MUNMAP
86
87/* Define if you have the putenv function.  */
88#undef HAVE_PUTENV
89
90/* Define if you have the setenv function.  */
91#undef HAVE_SETENV
92
93/* Define if you have the setlocale function.  */
94#undef HAVE_SETLOCALE
95
96/* Define if you have the stpcpy function.  */
97#undef HAVE_STPCPY
98
99/* Define if you have the strcasecmp function.  */
100#undef HAVE_STRCASECMP
101
102/* Define if you have the strchr function.  */
103#undef HAVE_STRCHR
104
105/* Define if you have the strdup function.  */
106#undef HAVE_STRDUP
107
108/* Define if you have the <argz.h> header file.  */
109#undef HAVE_ARGZ_H
110
111/* Define if you have the <limits.h> header file.  */
112#undef HAVE_LIMITS_H
113
114/* Define if you have the <locale.h> header file.  */
115#undef HAVE_LOCALE_H
116
117/* Define if you have the <malloc.h> header file.  */
118#undef HAVE_MALLOC_H
119
120/* Define if you have the <nl_types.h> header file.  */
121#undef HAVE_NL_TYPES_H
122
123/* Define if you have the <string.h> header file.  */
124#undef HAVE_STRING_H
125
126/* Define if you have the <sys/param.h> header file.  */
127#undef HAVE_SYS_PARAM_H
128
129/* Define if you have the <unistd.h> header file.  */
130#undef HAVE_UNISTD_H
131
132/* Define if you have the X11 library (-lX11).  */
133#undef HAVE_LIBX11
134
135/* Define if you have the Xaw library (-lXaw).  */
136#undef HAVE_LIBXAW
137
138/* Define if you have the Xmu library (-lXmu).  */
139#undef HAVE_LIBXMU
140
141/* Define if you have the Xt library (-lXt).  */
142#undef HAVE_LIBXT
143
144/* Define if you have the i library (-li).  */
145#undef HAVE_LIBI
146
147/* Name of package */
148#undef PACKAGE
149
150/* Version number of package */
151#undef VERSION
152
153/* Score file */
154#undef SCOREFILE
155
156
157#ifndef HAVE_SETLOCALE
158# define setlocale(Category, Locale)
159#endif
160
161#if ENABLE_NLS
162# ifndef HAVE_LIBINTL_H
163#  define HAVE_LIBINTL_H 1
164# endif
165# include <libintl.h>
166# define _(Text) gettext (Text)
167#else
168# define bindtextdomain(Domain, Directory)
169# define textdomain(Domain)
170# define _(Text) Text
171# define gettext(z) z
172#endif
173#define N_(Text) Text
174
175#endif /* CONFIG_H */
176