Added a minimalistic README.
[amarok_sonynw.git] / config.h.in
blob055c089aaf38490c50750ead22e45dea9ef5fd23
1 /* config.h.in. Generated from configure.in by autoheader. */
3 /* Define to 1 if you have the <Carbon/Carbon.h> header file. */
4 #undef HAVE_CARBON_CARBON_H
6 /* Define if you have the CoreAudio API */
7 #undef HAVE_COREAUDIO
9 /* Define to 1 if you have the <crt_externs.h> header file. */
10 #undef HAVE_CRT_EXTERNS_H
12 /* Defines if your system has the crypt function */
13 #undef HAVE_CRYPT
15 /* Define to 1 if you have the <dlfcn.h> header file. */
16 #undef HAVE_DLFCN_H
18 /* Define to 1 if you have the <inttypes.h> header file. */
19 #undef HAVE_INTTYPES_H
21 /* Define if you have libjpeg */
22 #undef HAVE_LIBJPEG
24 /* Define if you have libpng */
25 #undef HAVE_LIBPNG
27 /* Define if you have a working libpthread (will enable threaded code) */
28 #undef HAVE_LIBPTHREAD
30 /* Define if you have libz */
31 #undef HAVE_LIBZ
33 /* Define to 1 if you have the <memory.h> header file. */
34 #undef HAVE_MEMORY_H
36 /* Define if your system needs _NSGetEnviron to set up the environment */
37 #undef HAVE_NSGETENVIRON
39 /* Define if you have res_init */
40 #undef HAVE_RES_INIT
42 /* Define if you have the res_init prototype */
43 #undef HAVE_RES_INIT_PROTO
45 /* Define if you have a STL implementation by SGI */
46 #undef HAVE_SGI_STL
48 /* Define to 1 if you have the `snprintf' function. */
49 #undef HAVE_SNPRINTF
51 /* Define to 1 if you have the <stdint.h> header file. */
52 #undef HAVE_STDINT_H
54 /* Define to 1 if you have the <stdlib.h> header file. */
55 #undef HAVE_STDLIB_H
57 /* Define to 1 if you have the <strings.h> header file. */
58 #undef HAVE_STRINGS_H
60 /* Define to 1 if you have the <string.h> header file. */
61 #undef HAVE_STRING_H
63 /* Define if you have strlcat */
64 #undef HAVE_STRLCAT
66 /* Define if you have the strlcat prototype */
67 #undef HAVE_STRLCAT_PROTO
69 /* Define if you have strlcpy */
70 #undef HAVE_STRLCPY
72 /* Define if you have the strlcpy prototype */
73 #undef HAVE_STRLCPY_PROTO
75 /* Define to 1 if you have the <sys/bitypes.h> header file. */
76 #undef HAVE_SYS_BITYPES_H
78 /* Define to 1 if you have the <sys/stat.h> header file. */
79 #undef HAVE_SYS_STAT_H
81 /* Define to 1 if you have the <sys/types.h> header file. */
82 #undef HAVE_SYS_TYPES_H
84 /* Define to 1 if you have the <unistd.h> header file. */
85 #undef HAVE_UNISTD_H
87 /* Define to 1 if you have the `vsnprintf' function. */
88 #undef HAVE_VSNPRINTF
90 /* Suffix for lib directories */
91 #undef KDELIBSUFF
93 /* Define a safe value for MAXPATHLEN */
94 #undef KDEMAXPATHLEN
96 /* Name of package */
97 #undef PACKAGE
99 /* Define to the address where bug reports for this package should be sent. */
100 #undef PACKAGE_BUGREPORT
102 /* Define to the full name of this package. */
103 #undef PACKAGE_NAME
105 /* Define to the full name and version of this package. */
106 #undef PACKAGE_STRING
108 /* Define to the one symbol short name of this package. */
109 #undef PACKAGE_TARNAME
111 /* Define to the version of this package. */
112 #undef PACKAGE_VERSION
114 /* The size of `char *', as computed by sizeof. */
115 #undef SIZEOF_CHAR_P
117 /* The size of `int', as computed by sizeof. */
118 #undef SIZEOF_INT
120 /* The size of `long', as computed by sizeof. */
121 #undef SIZEOF_LONG
123 /* The size of `short', as computed by sizeof. */
124 #undef SIZEOF_SHORT
126 /* The size of `size_t', as computed by sizeof. */
127 #undef SIZEOF_SIZE_T
129 /* The size of `unsigned long', as computed by sizeof. */
130 #undef SIZEOF_UNSIGNED_LONG
132 /* Define to 1 if you have the ANSI C header files. */
133 #undef STDC_HEADERS
135 /* Version number of package */
136 #undef VERSION
138 /* Defined if compiling without arts */
139 #undef WITHOUT_ARTS
141 /* Define to 1 if your processor stores words with the most significant byte
142 first (like Motorola and SPARC, unlike Intel and VAX). */
143 #undef WORDS_BIGENDIAN
146 * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
147 * headers and I'm too lazy to write a configure test as long as only
148 * unixware is related
150 #ifdef _UNIXWARE
151 #define HAVE_BOOLEAN
152 #endif
157 * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
158 * that defines bzero.
161 #if defined(_AIX)
162 #include <strings.h>
163 #endif
167 #if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H)
168 # include <sys/time.h>
169 # include <crt_externs.h>
170 # define environ (*_NSGetEnviron())
171 #endif
175 #if !defined(HAVE_RES_INIT_PROTO)
176 #ifdef __cplusplus
177 extern "C" {
178 #endif
179 int res_init(void);
180 #ifdef __cplusplus
182 #endif
183 #endif
187 #if !defined(HAVE_STRLCAT_PROTO)
188 #ifdef __cplusplus
189 extern "C" {
190 #endif
191 unsigned long strlcat(char*, const char*, unsigned long);
192 #ifdef __cplusplus
194 #endif
195 #endif
199 #if !defined(HAVE_STRLCPY_PROTO)
200 #ifdef __cplusplus
201 extern "C" {
202 #endif
203 unsigned long strlcpy(char*, const char*, unsigned long);
204 #ifdef __cplusplus
206 #endif
207 #endif
212 * On HP-UX, the declaration of vsnprintf() is needed every time !
215 #if !defined(HAVE_VSNPRINTF) || defined(hpux)
216 #if __STDC__
217 #include <stdarg.h>
218 #include <stdlib.h>
219 #else
220 #include <varargs.h>
221 #endif
222 #ifdef __cplusplus
223 extern "C"
224 #endif
225 int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
226 #ifdef __cplusplus
227 extern "C"
228 #endif
229 int snprintf(char *str, size_t n, char const *fmt, ...);
230 #endif
234 #if defined(__SVR4) && !defined(__svr4__)
235 #define __svr4__ 1
236 #endif
239 /* type to use in place of socklen_t if not defined */
240 #undef kde_socklen_t
242 /* type to use in place of socklen_t if not defined (deprecated, use
243 kde_socklen_t) */
244 #undef ksize_t