Remove qt3support
[kdenetwork.git] / config.h.cmake
blob73ab31ca0500a1ebc7ce70f9de2596709197040e
1 /* config.h.  Generated by cmake from config.h.cmake */
4 /* Define if you have the getdomainname prototype */
5 #cmakedefine HAVE_GETDOMAINNAME_PROTO 1
7 /* Define to 1 if you have the `getifaddrs' function. */
8 #cmakedefine HAVE_GETIFADDRS 1
10 /* Define to 1 if you have the `getnameinfo' function. */
11 #cmakedefine HAVE_GETNAMEINFO 1
14 /* Define if your system needs _NSGetEnviron to set up the environment */
15 #cmakedefine HAVE_NSGETENVIRON 1
19 /* Define if you have the res_init prototype */
20 #cmakedefine HAVE_RES_INIT_PROTO 1
22 /* Define if SLP is available */
23 #cmakedefine HAVE_SLP 1
25 /* Define to 1 if you have the <string.h> header file. */
26 #cmakedefine HAVE_STRING_H 1
29 /* Define if you have the strlcat prototype */
30 #cmakedefine HAVE_STRLCAT_PROTO 1
32 /* Define if you have the strlcpy prototype */
33 #cmakedefine HAVE_STRLCPY_PROTO 1
35 /* Define to 1 if `sa_len' is member of `struct sockaddr'. */
36 /* #undef HAVE_STRUCT_SOCKADDR_SA_LEN */
39 /* Define to 1 if you have the <sys/bitypes.h> header file. */
40 #cmakedefine HAVE_SYS_BITYPES_H 1
43 /* Define to 1 if you have the <sys/file.h> header file. */
44 #cmakedefine HAVE_SYS_FILE_H 1
46 /* Define to 1 if you have the <sys/param.h> header file. */
47 #cmakedefine HAVE_SYS_PARAM_H 1
49 /* Define to 1 if you have the <sys/select.h> header file. */
50 #cmakedefine HAVE_SYS_SELECT_H 1
52 /* Define to 1 if you have the <sys/sockio.h> header file. */
53 #cmakedefine HAVE_SYS_SOCKIO_H 1
55 /* Define to 1 if you have the <sys/stat.h> header file. */
56 #cmakedefine HAVE_SYS_STAT_H 1
58 /* Define to 1 if you have the <sys/time.h> header file. */
59 #cmakedefine HAVE_SYS_TIME_H 1
61 /* Define to 1 if you have the <sys/types.h> header file. */
62 #cmakedefine HAVE_SYS_TYPES_H 1
64 /* define if you have a timezone variable */
65 #define HAVE_TIMEZONE 1
67 /* Define to 1 if you have the <unistd.h> header file. */
68 #cmakedefine HAVE_UNISTD_H 1
70 /* Define if you have unsetenv */
71 #cmakedefine HAVE_UNSETENV 1
73 /* Define if you have the unsetenv prototype */
74 #cmakedefine HAVE_UNSETENV_PROTO 1
76 /* Define if you have usleep */
77 #cmakedefine HAVE_USLEEP 1
79 /* Define if you have the usleep prototype */
80 #cmakedefine HAVE_USLEEP_PROTO 1
83 /* Define to 1 if you have the `va_copy' function. */
84 /* #undef HAVE_VA_COPY */
86 /* Define to 1 if you have the `vsnprintf' function. */
87 #cmakedefine HAVE_VSNPRINTF 1
89 /* Define to 1 if you have the `_va_copy' function. */
90 /* #undef HAVE__VA_COPY */
92 /* Name of package */
93 #define PACKAGE "kdenetwork"
95 /* If we're using configure, we're on POSIX */
96 #define POSIX 1
98 /* Build as a production build */
99 #define PRODUCTION 1
101 /* Build as a production build */
102 #define PRODUCTION_BUILD 1
105 /* The size of a `char *', as computed by sizeof. */
106 #define SIZEOF_CHAR_P ${SIZEOF_CHAR_P}
108 /* The size of a `int', as computed by sizeof. */
109 #define SIZEOF_INT ${SIZEOF_INT}
111 /* The size of a `long', as computed by sizeof. */
112 #define SIZEOF_LONG ${SIZEOF_LONG}
114 /* The size of a `short', as computed by sizeof. */
115 #define SIZEOF_SHORT ${SIZEOF_SHORT}
117 /* The size of a `size_t', as computed by sizeof. */
118 #define SIZEOF_SIZE_T ${SIZEOF_SIZE_T}
120 /* The size of a `unsigned long', as computed by sizeof. */
121 #define SIZEOF_UNSIGNED_LONG ${SIZEOF_UNSIGNED_LONG}
123 /* Determine pointer size for SQLite */
124 #define SQLITE_PTR_SZ SIZEOF_CHAR_P
126 /* Define to 1 if you have the ANSI C header files. */
127 #define STDC_HEADERS 1
129 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
130 #cmakedefine TIME_WITH_SYS_TIME 1
132 /* Define to 1 if your <sys/time.h> declares `struct tm'. */
133 /* #undef TM_IN_SYS_TIME */
136 /* Define if you want to use a callback structure instead of callback
137    functions */
138 /* #undef USE_STRUCT_CALLBACKS */
140 /* Version number of package */
141 #define VERSION "3.9.02"
143 /* Defined if compiling without arts */
144 #define WITHOUT_ARTS 1
146 /* Define to 1 if your processor stores words with the most significant byte
147    first (like Motorola and SPARC, unlike Intel and VAX). */
148 /* #undef WORDS_BIGENDIAN */
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
163  * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
164  * that defines bzero.
165  */
167 #if defined(_AIX)
168 #include <strings.h>
169 #endif
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
180 /* Number of bits in a file offset, on hosts where this is settable. */
181 #define _FILE_OFFSET_BITS 64
184 #if !defined(HAVE_GETDOMAINNAME_PROTO)
185 #ifdef __cplusplus
186 extern "C" {
187 #endif
188 #include <sys/types.h>
189                 int getdomainname (char *, size_t);
190 #ifdef __cplusplus
192 #endif
193 #endif
197 #if !defined(HAVE_GETHOSTNAME_PROTO)
198 #ifdef __cplusplus
199 extern "C" {
200 #endif
201 int gethostname (char *, unsigned int);
202 #ifdef __cplusplus
204 #endif
205 #endif
209 #if !defined(HAVE_RES_INIT_PROTO)
210 #ifdef __cplusplus
211 extern "C" {
212 #endif
213 int res_init(void);
214 #ifdef __cplusplus
216 #endif
217 #endif
223 #if !defined(HAVE_STRLCAT_PROTO)
224 #ifdef __cplusplus
225 extern "C" {
226 #endif
227 unsigned long strlcat(char*, const char*, unsigned long);
228 #ifdef __cplusplus
230 #endif
231 #endif
235 #if !defined(HAVE_STRLCPY_PROTO)
236 #ifdef __cplusplus
237 extern "C" {
238 #endif
239 unsigned long strlcpy(char*, const char*, unsigned long);
240 #ifdef __cplusplus
242 #endif
243 #endif
247 #if !defined(HAVE_UNSETENV_PROTO)
248 #ifdef __cplusplus
249 extern "C" {
250 #endif
251 void unsetenv (const char *);
252 #ifdef __cplusplus
254 #endif
255 #endif
259 #if !defined(HAVE_USLEEP_PROTO)
260 #ifdef __cplusplus
261 extern "C" {
262 #endif
263 int usleep (unsigned int);
264 #ifdef __cplusplus
266 #endif
267 #endif
270 /* Define for large files, on AIX-style hosts. */
271 /* #undef _LARGE_FILES */
275  * On HP-UX, the declaration of vsnprintf() is needed every time !
276  */
278 #if !defined(HAVE_VSNPRINTF) || defined(hpux)
279 #if __STDC__
280 #include <stdarg.h>
281 #include <stdlib.h>
282 #else
283 #include <varargs.h>
284 #endif
285 #ifdef __cplusplus
286 extern "C"
287 #endif
288 int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
289 #ifdef __cplusplus
290 extern "C"
291 #endif
292 int snprintf(char *str, size_t n, char const *fmt, ...);
293 #endif
296 /* Defined when alsa support is enabled */
297 #define __ALSA_ENABLED__ 1
300 #if defined(__SVR4) && !defined(__svr4__)
301 #define __svr4__ 1
302 #endif
306 #ifdef __osf__
307 /* From Tom Leitner */
308 #if __STDC__
309 #include <stdarg.h>
310 #include <stdlib.h>
311 #else
312 #include <varargs.h>
313 #endif
314 #ifndef __OSF_INCLUDED__
315 #define __OSF_INCLUDED__
316 #define MSG_NOSIGNAL 0
317 #ifndef AF_LOCAL
318 #define AF_LOCAL 1          /* is the same as AF_UNIX */
319 #endif
320 #ifndef herror
321 #define herror(a)   printf(a)
322 #endif
324 #include <sys/types.h>
325 #ifdef __cplusplus
326 extern "C" int sethostname (char *name, int name_len );
327 extern "C" int flock(int filedes, int operation );
328 #else
329 int sethostname (char *name, int name_len );
330 int flock(int filedes, int operation );
331 #endif
332 #endif
333 #endif
338 /* type to use in place of socklen_t if not defined */
339 #define kde_socklen_t socklen_t
341 /* type to use in place of socklen_t if not defined (deprecated, use
342    kde_socklen_t) */
343 #define ksize_t socklen_t
345 /* Define to `unsigned' if <sys/types.h> does not define. */
346 /* #undef size_t */
348 /* Define to `unsigned int' if not defined. */
349 /* #undef uint32_t */
351 /* Define to `unsigned long long' if not defined. */
352 /* #undef uint64_t */
354 /* Define to `unsigned char' if not defined. */
355 /* #undef uint8_t */