~ubuntu-branches/ubuntu/oneiric/libkipi/oneiric-proposed

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