Subversion Repositories public

Rev

Rev 187 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
88 andreas 1
/* config.h.in.  Generated from configure.in by autoheader.  */
2
 
3
/* Define to 1 if you have the <Carbon/Carbon.h> header file. */
4
#undef HAVE_CARBON_CARBON_H
5
 
6
/* Define if you have the CoreAudio API */
7
#undef HAVE_COREAUDIO
8
 
9
/* Define to 1 if you have the <crt_externs.h> header file. */
10
#undef HAVE_CRT_EXTERNS_H
11
 
12
/* Defines if your system has the crypt function */
13
#undef HAVE_CRYPT
14
 
15
/* Define to 1 if you have the <dlfcn.h> header file. */
16
#undef HAVE_DLFCN_H
17
 
155 andreas 18
/* Define if you have the GDAL API */
19
#undef HAVE_GDAL
20
 
88 andreas 21
/* Define to 1 if you have the <inttypes.h> header file. */
22
#undef HAVE_INTTYPES_H
23
 
155 andreas 24
/* Define to 1 if you have the `gdal1.5.0' library (-lgdal1.5.0). */
25
#undef HAVE_LIBGDAL1_5_0
26
 
88 andreas 27
/* Define if you have libjpeg */
28
#undef HAVE_LIBJPEG
29
 
30
/* Define if you have libpng */
31
#undef HAVE_LIBPNG
32
 
33
/* Define if you have a working libpthread (will enable threaded code) */
34
#undef HAVE_LIBPTHREAD
35
 
36
/* Define if you have libz */
37
#undef HAVE_LIBZ
38
 
39
/* Define to 1 if you have the <memory.h> header file. */
40
#undef HAVE_MEMORY_H
41
 
42
/* Define if your system needs _NSGetEnviron to set up the environment */
43
#undef HAVE_NSGETENVIRON
44
 
45
/* Define if you have res_init */
46
#undef HAVE_RES_INIT
47
 
48
/* Define if you have the res_init prototype */
49
#undef HAVE_RES_INIT_PROTO
50
 
51
/* Define if you have a STL implementation by SGI */
52
#undef HAVE_SGI_STL
53
 
54
/* Define to 1 if you have the `snprintf' function. */
55
#undef HAVE_SNPRINTF
56
 
57
/* Define to 1 if you have the <stdint.h> header file. */
58
#undef HAVE_STDINT_H
59
 
60
/* Define to 1 if you have the <stdlib.h> header file. */
61
#undef HAVE_STDLIB_H
62
 
63
/* Define to 1 if you have the <strings.h> header file. */
64
#undef HAVE_STRINGS_H
65
 
66
/* Define to 1 if you have the <string.h> header file. */
67
#undef HAVE_STRING_H
68
 
69
/* Define if you have strlcat */
70
#undef HAVE_STRLCAT
71
 
72
/* Define if you have the strlcat prototype */
73
#undef HAVE_STRLCAT_PROTO
74
 
75
/* Define if you have strlcpy */
76
#undef HAVE_STRLCPY
77
 
78
/* Define if you have the strlcpy prototype */
79
#undef HAVE_STRLCPY_PROTO
80
 
81
/* Define to 1 if you have the <sys/bitypes.h> header file. */
82
#undef HAVE_SYS_BITYPES_H
83
 
84
/* Define to 1 if you have the <sys/stat.h> header file. */
85
#undef HAVE_SYS_STAT_H
86
 
87
/* Define to 1 if you have the <sys/types.h> header file. */
88
#undef HAVE_SYS_TYPES_H
89
 
90
/* Define to 1 if you have the <unistd.h> header file. */
91
#undef HAVE_UNISTD_H
92
 
93
/* Define to 1 if you have the `vsnprintf' function. */
94
#undef HAVE_VSNPRINTF
95
 
96
/* Suffix for lib directories */
97
#undef KDELIBSUFF
98
 
99
/* Define a safe value for MAXPATHLEN */
100
#undef KDEMAXPATHLEN
101
 
102
/* Name of package */
103
#undef PACKAGE
104
 
105
/* Define to the address where bug reports for this package should be sent. */
106
#undef PACKAGE_BUGREPORT
107
 
108
/* Define to the full name of this package. */
109
#undef PACKAGE_NAME
110
 
111
/* Define to the full name and version of this package. */
112
#undef PACKAGE_STRING
113
 
114
/* Define to the one symbol short name of this package. */
115
#undef PACKAGE_TARNAME
116
 
117
/* Define to the version of this package. */
118
#undef PACKAGE_VERSION
119
 
120
/* The size of `char *', as computed by sizeof. */
121
#undef SIZEOF_CHAR_P
122
 
123
/* The size of `int', as computed by sizeof. */
124
#undef SIZEOF_INT
125
 
126
/* The size of `long', as computed by sizeof. */
127
#undef SIZEOF_LONG
128
 
129
/* The size of `short', as computed by sizeof. */
130
#undef SIZEOF_SHORT
131
 
132
/* The size of `size_t', as computed by sizeof. */
133
#undef SIZEOF_SIZE_T
134
 
135
/* The size of `unsigned long', as computed by sizeof. */
136
#undef SIZEOF_UNSIGNED_LONG
137
 
138
/* Define to 1 if you have the ANSI C header files. */
139
#undef STDC_HEADERS
140
 
141
/* Version number of package */
142
#undef VERSION
143
 
144
/* Defined if compiling without arts */
145
#undef WITHOUT_ARTS
146
 
147
/* Define to 1 if your processor stores words with the most significant byte
148
   first (like Motorola and SPARC, unlike Intel and VAX). */
149
#undef WORDS_BIGENDIAN
150
 
151
/*
152
 * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
153
 * headers and I'm too lazy to write a configure test as long as only
154
 * unixware is related
155
 */
156
#ifdef _UNIXWARE
157
#define HAVE_BOOLEAN
158
#endif
159
 
160
 
161
 
162
/*
163
 * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
164
 * that defines bzero.
165
 */
166
 
167
#if defined(_AIX)
168
#include <strings.h>
169
#endif
170
 
171
 
172
 
173
#if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H)
174
# include <sys/time.h>
175
# include <crt_externs.h>
176
# define environ (*_NSGetEnviron())
177
#endif
178
 
179
 
180
 
181
#if !defined(HAVE_RES_INIT_PROTO)
182
#ifdef __cplusplus
183
extern "C" {
184
#endif
185
int res_init(void);
186
#ifdef __cplusplus
187
}
188
#endif
189
#endif
190
 
191
 
192
 
193
#if !defined(HAVE_STRLCAT_PROTO)
194
#ifdef __cplusplus
195
extern "C" {
196
#endif
197
unsigned long strlcat(char*, const char*, unsigned long);
198
#ifdef __cplusplus
199
}
200
#endif
201
#endif
202
 
203
 
204
 
205
#if !defined(HAVE_STRLCPY_PROTO)
206
#ifdef __cplusplus
207
extern "C" {
208
#endif
209
unsigned long strlcpy(char*, const char*, unsigned long);
210
#ifdef __cplusplus
211
}
212
#endif
213
#endif
214
 
215
 
216
 
217
/*
218
 * On HP-UX, the declaration of vsnprintf() is needed every time !
219
 */
220
 
221
#if !defined(HAVE_VSNPRINTF) || defined(hpux)
222
#if __STDC__
223
#include <stdarg.h>
224
#include <stdlib.h>
225
#else
226
#include <varargs.h>
227
#endif
228
#ifdef __cplusplus
229
extern "C"
230
#endif
231
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
232
#ifdef __cplusplus
233
extern "C"
234
#endif
235
int snprintf(char *str, size_t n, char const *fmt, ...);
236
#endif
237
 
238
 
239
 
240
#if defined(__SVR4) && !defined(__svr4__)
241
#define __svr4__ 1
242
#endif
243
 
244
 
245
/* type to use in place of socklen_t if not defined */
246
#undef kde_socklen_t
247
 
248
/* type to use in place of socklen_t if not defined (deprecated, use
249
   kde_socklen_t) */
250
#undef ksize_t