1 | /* config.h. Generated from build/cmake/config.h.in by cmake configure */ |
2 | #define __LIBARCHIVE_CONFIG_H_INCLUDED 1 |
3 | |
4 | /* |
5 | * Ensure we have C99-style int64_t, etc, all defined. |
6 | */ |
7 | |
8 | /* First, we need to know if the system has already defined them. */ |
9 | #define HAVE_INT16_T |
10 | #define HAVE_INT32_T |
11 | #define HAVE_INT64_T |
12 | #define HAVE_INTMAX_T |
13 | |
14 | #define HAVE_UINT8_T |
15 | #define HAVE_UINT16_T |
16 | #define HAVE_UINT32_T |
17 | #define HAVE_UINT64_T |
18 | #define HAVE_UINTMAX_T |
19 | |
20 | /* We might have the types we want under other spellings. */ |
21 | /* #undef HAVE___INT64 */ |
22 | /* #undef HAVE_U_INT64_T */ |
23 | /* #undef HAVE_UNSIGNED___INT64 */ |
24 | |
25 | /* The sizes of various standard integer types. */ |
26 | #define SIZEOF_SHORT 2 |
27 | #define SIZEOF_INT 4 |
28 | #define SIZEOF_UNSIGNED_SHORT 2 |
29 | #define SIZEOF_UNSIGNED 4 |
30 | |
31 | /* |
32 | * If we lack int64_t, define it to the first of __int64, int, long, and long long |
33 | * that exists and is the right size. |
34 | */ |
35 | #if !defined(HAVE_INT64_T) && defined(HAVE___INT64) |
36 | typedef __int64 int64_t; |
37 | #define HAVE_INT64_T |
38 | #endif |
39 | |
40 | #if !defined(HAVE_INT64_T) && SIZEOF_INT == 8 |
41 | typedef int int64_t; |
42 | #define HAVE_INT64_T |
43 | #endif |
44 | |
45 | #if !defined(HAVE_INT64_T) |
46 | #error No 64-bit integer type was found. |
47 | #endif |
48 | |
49 | /* |
50 | * Similarly for int32_t |
51 | */ |
52 | #if !defined(HAVE_INT32_T) && SIZEOF_INT == 4 |
53 | typedef int int32_t; |
54 | #define HAVE_INT32_T |
55 | #endif |
56 | |
57 | #if !defined(HAVE_INT32_T) |
58 | #error No 32-bit integer type was found. |
59 | #endif |
60 | |
61 | /* |
62 | * Similarly for int16_t |
63 | */ |
64 | #if !defined(HAVE_INT16_T) && SIZEOF_INT == 2 |
65 | typedef int int16_t; |
66 | #define HAVE_INT16_T |
67 | #endif |
68 | |
69 | #if !defined(HAVE_INT16_T) && SIZEOF_SHORT == 2 |
70 | typedef short int16_t; |
71 | #define HAVE_INT16_T |
72 | #endif |
73 | |
74 | #if !defined(HAVE_INT16_T) |
75 | #error No 16-bit integer type was found. |
76 | #endif |
77 | |
78 | /* |
79 | * Similarly for uint64_t |
80 | */ |
81 | #if !defined(HAVE_UINT64_T) && defined(HAVE_UNSIGNED___INT64) |
82 | typedef unsigned __int64 uint64_t; |
83 | #define HAVE_UINT64_T |
84 | #endif |
85 | |
86 | #if !defined(HAVE_UINT64_T) && SIZEOF_UNSIGNED == 8 |
87 | typedef unsigned uint64_t; |
88 | #define HAVE_UINT64_T |
89 | #endif |
90 | |
91 | #if !defined(HAVE_UINT64_T) |
92 | #error No 64-bit unsigned integer type was found. |
93 | #endif |
94 | |
95 | |
96 | /* |
97 | * Similarly for uint32_t |
98 | */ |
99 | #if !defined(HAVE_UINT32_T) && SIZEOF_UNSIGNED == 4 |
100 | typedef unsigned uint32_t; |
101 | #define HAVE_UINT32_T |
102 | #endif |
103 | |
104 | #if !defined(HAVE_UINT32_T) |
105 | #error No 32-bit unsigned integer type was found. |
106 | #endif |
107 | |
108 | /* |
109 | * Similarly for uint16_t |
110 | */ |
111 | #if !defined(HAVE_UINT16_T) && SIZEOF_UNSIGNED == 2 |
112 | typedef unsigned uint16_t; |
113 | #define HAVE_UINT16_T |
114 | #endif |
115 | |
116 | #if !defined(HAVE_UINT16_T) && SIZEOF_UNSIGNED_SHORT == 2 |
117 | typedef unsigned short uint16_t; |
118 | #define HAVE_UINT16_T |
119 | #endif |
120 | |
121 | #if !defined(HAVE_UINT16_T) |
122 | #error No 16-bit unsigned integer type was found. |
123 | #endif |
124 | |
125 | /* |
126 | * Similarly for uint8_t |
127 | */ |
128 | #if !defined(HAVE_UINT8_T) |
129 | typedef unsigned char uint8_t; |
130 | #define HAVE_UINT8_T |
131 | #endif |
132 | |
133 | #if !defined(HAVE_UINT16_T) |
134 | #error No 8-bit unsigned integer type was found. |
135 | #endif |
136 | |
137 | /* Define intmax_t and uintmax_t if they are not already defined. */ |
138 | #if !defined(HAVE_INTMAX_T) |
139 | typedef int64_t intmax_t; |
140 | #endif |
141 | |
142 | #if !defined(HAVE_UINTMAX_T) |
143 | typedef uint64_t uintmax_t; |
144 | #endif |
145 | |
146 | /* Define ZLIB_WINAPI if zlib was built on Visual Studio. */ |
147 | /* #undef ZLIB_WINAPI */ |
148 | |
149 | /* Darwin ACL support */ |
150 | /* #undef ARCHIVE_ACL_DARWIN */ |
151 | |
152 | /* FreeBSD ACL support */ |
153 | /* #undef ARCHIVE_ACL_FREEBSD */ |
154 | |
155 | /* FreeBSD NFSv4 ACL support */ |
156 | /* #undef ARCHIVE_ACL_FREEBSD_NFS4 */ |
157 | |
158 | /* Linux POSIX.1e ACL support via libacl */ |
159 | /* #undef ARCHIVE_ACL_LIBACL */ |
160 | |
161 | /* Linux NFSv4 ACL support via librichacl */ |
162 | /* #undef ARCHIVE_ACL_LIBRICHACL */ |
163 | |
164 | /* Solaris ACL support */ |
165 | /* #undef ARCHIVE_ACL_SUNOS */ |
166 | |
167 | /* Solaris NFSv4 ACL support */ |
168 | /* #undef ARCHIVE_ACL_SUNOS_NFS4 */ |
169 | |
170 | /* MD5 via ARCHIVE_CRYPTO_MD5_LIBC supported. */ |
171 | /* #undef ARCHIVE_CRYPTO_MD5_LIBC */ |
172 | |
173 | /* MD5 via ARCHIVE_CRYPTO_MD5_LIBSYSTEM supported. */ |
174 | /* #undef ARCHIVE_CRYPTO_MD5_LIBSYSTEM */ |
175 | |
176 | /* MD5 via ARCHIVE_CRYPTO_MD5_NETTLE supported. */ |
177 | /* #undef ARCHIVE_CRYPTO_MD5_NETTLE */ |
178 | |
179 | /* MD5 via ARCHIVE_CRYPTO_MD5_OPENSSL supported. */ |
180 | #define ARCHIVE_CRYPTO_MD5_OPENSSL 1 |
181 | |
182 | /* MD5 via ARCHIVE_CRYPTO_MD5_WIN supported. */ |
183 | /* #undef ARCHIVE_CRYPTO_MD5_WIN */ |
184 | |
185 | /* RMD160 via ARCHIVE_CRYPTO_RMD160_LIBC supported. */ |
186 | /* #undef ARCHIVE_CRYPTO_RMD160_LIBC */ |
187 | |
188 | /* RMD160 via ARCHIVE_CRYPTO_RMD160_NETTLE supported. */ |
189 | /* #undef ARCHIVE_CRYPTO_RMD160_NETTLE */ |
190 | |
191 | /* RMD160 via ARCHIVE_CRYPTO_RMD160_OPENSSL supported. */ |
192 | #define ARCHIVE_CRYPTO_RMD160_OPENSSL 1 |
193 | |
194 | /* SHA1 via ARCHIVE_CRYPTO_SHA1_LIBC supported. */ |
195 | /* #undef ARCHIVE_CRYPTO_SHA1_LIBC */ |
196 | |
197 | /* SHA1 via ARCHIVE_CRYPTO_SHA1_LIBSYSTEM supported. */ |
198 | /* #undef ARCHIVE_CRYPTO_SHA1_LIBSYSTEM */ |
199 | |
200 | /* SHA1 via ARCHIVE_CRYPTO_SHA1_NETTLE supported. */ |
201 | /* #undef ARCHIVE_CRYPTO_SHA1_NETTLE */ |
202 | |
203 | /* SHA1 via ARCHIVE_CRYPTO_SHA1_OPENSSL supported. */ |
204 | #define ARCHIVE_CRYPTO_SHA1_OPENSSL 1 |
205 | |
206 | /* SHA1 via ARCHIVE_CRYPTO_SHA1_WIN supported. */ |
207 | /* #undef ARCHIVE_CRYPTO_SHA1_WIN */ |
208 | |
209 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC supported. */ |
210 | /* #undef ARCHIVE_CRYPTO_SHA256_LIBC */ |
211 | |
212 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC2 supported. */ |
213 | /* #undef ARCHIVE_CRYPTO_SHA256_LIBC2 */ |
214 | |
215 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC3 supported. */ |
216 | /* #undef ARCHIVE_CRYPTO_SHA256_LIBC3 */ |
217 | |
218 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBSYSTEM supported. */ |
219 | /* #undef ARCHIVE_CRYPTO_SHA256_LIBSYSTEM */ |
220 | |
221 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_NETTLE supported. */ |
222 | /* #undef ARCHIVE_CRYPTO_SHA256_NETTLE */ |
223 | |
224 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_OPENSSL supported. */ |
225 | #define ARCHIVE_CRYPTO_SHA256_OPENSSL 1 |
226 | |
227 | /* SHA256 via ARCHIVE_CRYPTO_SHA256_WIN supported. */ |
228 | /* #undef ARCHIVE_CRYPTO_SHA256_WIN */ |
229 | |
230 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC supported. */ |
231 | /* #undef ARCHIVE_CRYPTO_SHA384_LIBC */ |
232 | |
233 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC2 supported. */ |
234 | /* #undef ARCHIVE_CRYPTO_SHA384_LIBC2 */ |
235 | |
236 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC3 supported. */ |
237 | /* #undef ARCHIVE_CRYPTO_SHA384_LIBC3 */ |
238 | |
239 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBSYSTEM supported. */ |
240 | /* #undef ARCHIVE_CRYPTO_SHA384_LIBSYSTEM */ |
241 | |
242 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_NETTLE supported. */ |
243 | /* #undef ARCHIVE_CRYPTO_SHA384_NETTLE */ |
244 | |
245 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_OPENSSL supported. */ |
246 | #define ARCHIVE_CRYPTO_SHA384_OPENSSL 1 |
247 | |
248 | /* SHA384 via ARCHIVE_CRYPTO_SHA384_WIN supported. */ |
249 | /* #undef ARCHIVE_CRYPTO_SHA384_WIN */ |
250 | |
251 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC supported. */ |
252 | /* #undef ARCHIVE_CRYPTO_SHA512_LIBC */ |
253 | |
254 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC2 supported. */ |
255 | /* #undef ARCHIVE_CRYPTO_SHA512_LIBC2 */ |
256 | |
257 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC3 supported. */ |
258 | /* #undef ARCHIVE_CRYPTO_SHA512_LIBC3 */ |
259 | |
260 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBSYSTEM supported. */ |
261 | /* #undef ARCHIVE_CRYPTO_SHA512_LIBSYSTEM */ |
262 | |
263 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_NETTLE supported. */ |
264 | /* #undef ARCHIVE_CRYPTO_SHA512_NETTLE */ |
265 | |
266 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_OPENSSL supported. */ |
267 | #define ARCHIVE_CRYPTO_SHA512_OPENSSL 1 |
268 | |
269 | /* SHA512 via ARCHIVE_CRYPTO_SHA512_WIN supported. */ |
270 | /* #undef ARCHIVE_CRYPTO_SHA512_WIN */ |
271 | |
272 | /* AIX xattr support */ |
273 | /* #undef ARCHIVE_XATTR_AIX */ |
274 | |
275 | /* Darwin xattr support */ |
276 | /* #undef ARCHIVE_XATTR_DARWIN */ |
277 | |
278 | /* FreeBSD xattr support */ |
279 | /* #undef ARCHIVE_XATTR_FREEBSD */ |
280 | |
281 | /* Linux xattr support */ |
282 | #define ARCHIVE_XATTR_LINUX 1 |
283 | |
284 | /* Version number of bsdcpio */ |
285 | #define BSDCPIO_VERSION_STRING "3.6.2" |
286 | |
287 | /* Version number of bsdtar */ |
288 | #define BSDTAR_VERSION_STRING "3.6.2" |
289 | |
290 | /* Version number of bsdcat */ |
291 | #define BSDCAT_VERSION_STRING "3.6.2" |
292 | |
293 | /* Define to 1 if you have the `acl_create_entry' function. */ |
294 | /* #undef HAVE_ACL_CREATE_ENTRY */ |
295 | |
296 | /* Define to 1 if you have the `acl_get_fd_np' function. */ |
297 | /* #undef HAVE_ACL_GET_FD_NP */ |
298 | |
299 | /* Define to 1 if you have the `acl_get_link' function. */ |
300 | /* #undef HAVE_ACL_GET_LINK */ |
301 | |
302 | /* Define to 1 if you have the `acl_get_link_np' function. */ |
303 | /* #undef HAVE_ACL_GET_LINK_NP */ |
304 | |
305 | /* Define to 1 if you have the `acl_get_perm' function. */ |
306 | /* #undef HAVE_ACL_GET_PERM */ |
307 | |
308 | /* Define to 1 if you have the `acl_get_perm_np' function. */ |
309 | /* #undef HAVE_ACL_GET_PERM_NP */ |
310 | |
311 | /* Define to 1 if you have the `acl_init' function. */ |
312 | /* #undef HAVE_ACL_INIT */ |
313 | |
314 | /* Define to 1 if you have the <acl/libacl.h> header file. */ |
315 | /* #undef HAVE_ACL_LIBACL_H */ |
316 | |
317 | /* Define to 1 if the system has the type `acl_permset_t'. */ |
318 | /* #undef HAVE_ACL_PERMSET_T */ |
319 | |
320 | /* Define to 1 if you have the `acl_set_fd' function. */ |
321 | /* #undef HAVE_ACL_SET_FD */ |
322 | |
323 | /* Define to 1 if you have the `acl_set_fd_np' function. */ |
324 | /* #undef HAVE_ACL_SET_FD_NP */ |
325 | |
326 | /* Define to 1 if you have the `acl_set_file' function. */ |
327 | /* #undef HAVE_ACL_SET_FILE */ |
328 | |
329 | /* Define to 1 if you have the `arc4random_buf' function. */ |
330 | /* #undef HAVE_ARC4RANDOM_BUF */ |
331 | |
332 | /* Define to 1 if you have the <attr/xattr.h> header file. */ |
333 | /* #undef HAVE_ATTR_XATTR_H */ |
334 | |
335 | /* Define to 1 if you have the <Bcrypt.h> header file. */ |
336 | /* #undef HAVE_BCRYPT_H */ |
337 | |
338 | /* Define to 1 if you have the <bsdxml.h> header file. */ |
339 | /* #undef HAVE_BSDXML_H */ |
340 | |
341 | /* Define to 1 if you have the <bzlib.h> header file. */ |
342 | /* #undef HAVE_BZLIB_H */ |
343 | |
344 | /* Define to 1 if you have the `chflags' function. */ |
345 | /* #undef HAVE_CHFLAGS */ |
346 | |
347 | /* Define to 1 if you have the `chown' function. */ |
348 | #define HAVE_CHOWN 1 |
349 | |
350 | /* Define to 1 if you have the `chroot' function. */ |
351 | #define HAVE_CHROOT 1 |
352 | |
353 | /* Define to 1 if you have the <copyfile.h> header file. */ |
354 | /* #undef HAVE_COPYFILE_H */ |
355 | |
356 | /* Define to 1 if you have the `ctime_r' function. */ |
357 | #define HAVE_CTIME_R 1 |
358 | |
359 | /* Define to 1 if you have the <ctype.h> header file. */ |
360 | #define HAVE_CTYPE_H 1 |
361 | |
362 | /* Define to 1 if you have the `cygwin_conv_path' function. */ |
363 | /* #undef HAVE_CYGWIN_CONV_PATH */ |
364 | |
365 | /* Define to 1 if you have the declaration of `ACE_GETACL', and to 0 if you |
366 | don't. */ |
367 | /* #undef HAVE_DECL_ACE_GETACL */ |
368 | |
369 | /* Define to 1 if you have the declaration of `ACE_GETACLCNT', and to 0 if you |
370 | don't. */ |
371 | /* #undef HAVE_DECL_ACE_GETACLCNT */ |
372 | |
373 | /* Define to 1 if you have the declaration of `ACE_SETACL', and to 0 if you |
374 | don't. */ |
375 | /* #undef HAVE_DECL_ACE_SETACL */ |
376 | |
377 | /* Define to 1 if you have the declaration of `ACL_SYNCHRONIZE', and to 0 if |
378 | you don't. */ |
379 | /* #undef HAVE_DECL_ACL_SYNCHRONIZE */ |
380 | |
381 | /* Define to 1 if you have the declaration of `ACL_TYPE_EXTENDED', and to 0 if |
382 | you don't. */ |
383 | /* #undef HAVE_DECL_ACL_TYPE_EXTENDED */ |
384 | |
385 | /* Define to 1 if you have the declaration of `ACL_TYPE_NFS4', and to 0 if you |
386 | don't. */ |
387 | /* #undef HAVE_DECL_ACL_TYPE_NFS4 */ |
388 | |
389 | /* Define to 1 if you have the declaration of `ACL_USER', and to 0 if you |
390 | don't. */ |
391 | /* #undef HAVE_DECL_ACL_USER */ |
392 | |
393 | /* Define to 1 if you have the declaration of `INT32_MAX', and to 0 if you |
394 | don't. */ |
395 | #define HAVE_DECL_INT32_MAX 1 |
396 | |
397 | /* Define to 1 if you have the declaration of `INT32_MIN', and to 0 if you |
398 | don't. */ |
399 | #define HAVE_DECL_INT32_MIN 1 |
400 | |
401 | /* Define to 1 if you have the declaration of `INT64_MAX', and to 0 if you |
402 | don't. */ |
403 | #define HAVE_DECL_INT64_MAX 1 |
404 | |
405 | /* Define to 1 if you have the declaration of `INT64_MIN', and to 0 if you |
406 | don't. */ |
407 | #define HAVE_DECL_INT64_MIN 1 |
408 | |
409 | /* Define to 1 if you have the declaration of `INTMAX_MAX', and to 0 if you |
410 | don't. */ |
411 | #define HAVE_DECL_INTMAX_MAX 1 |
412 | |
413 | /* Define to 1 if you have the declaration of `INTMAX_MIN', and to 0 if you |
414 | don't. */ |
415 | #define HAVE_DECL_INTMAX_MIN 1 |
416 | |
417 | /* Define to 1 if you have the declaration of `SETACL', and to 0 if you don't. |
418 | */ |
419 | /* #undef HAVE_DECL_SETACL */ |
420 | |
421 | /* Define to 1 if you have the declaration of `SIZE_MAX', and to 0 if you |
422 | don't. */ |
423 | #define HAVE_DECL_SIZE_MAX 1 |
424 | |
425 | /* Define to 1 if you have the declaration of `SSIZE_MAX', and to 0 if you |
426 | don't. */ |
427 | #define HAVE_DECL_SSIZE_MAX 1 |
428 | |
429 | /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you |
430 | don't. */ |
431 | #define HAVE_DECL_STRERROR_R 1 |
432 | |
433 | /* Define to 1 if you have the declaration of `UINT32_MAX', and to 0 if you |
434 | don't. */ |
435 | #define HAVE_DECL_UINT32_MAX 1 |
436 | |
437 | /* Define to 1 if you have the declaration of `UINT64_MAX', and to 0 if you |
438 | don't. */ |
439 | #define HAVE_DECL_UINT64_MAX 1 |
440 | |
441 | /* Define to 1 if you have the declaration of `UINTMAX_MAX', and to 0 if you |
442 | don't. */ |
443 | #define HAVE_DECL_UINTMAX_MAX 1 |
444 | |
445 | /* Define to 1 if you have the declaration of `XATTR_NOFOLLOW', and to 0 if |
446 | you don't. */ |
447 | /* #undef HAVE_DECL_XATTR_NOFOLLOW */ |
448 | |
449 | /* Define to 1 if you have the <direct.h> header file. */ |
450 | /* #undef HAVE_DIRECT_H */ |
451 | |
452 | /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. |
453 | */ |
454 | #define HAVE_DIRENT_H 1 |
455 | |
456 | /* Define to 1 if you have the `dirfd' function. */ |
457 | #define HAVE_DIRFD 1 |
458 | |
459 | /* Define to 1 if you have the <dlfcn.h> header file. */ |
460 | #define HAVE_DLFCN_H 1 |
461 | |
462 | /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ |
463 | /* #undef HAVE_DOPRNT */ |
464 | |
465 | /* Define to 1 if nl_langinfo supports D_MD_ORDER */ |
466 | /* #undef HAVE_D_MD_ORDER */ |
467 | |
468 | /* A possible errno value for invalid file format errors */ |
469 | /* #undef HAVE_EFTYPE */ |
470 | |
471 | /* A possible errno value for invalid file format errors */ |
472 | #define HAVE_EILSEQ 1 |
473 | |
474 | /* Define to 1 if you have the <errno.h> header file. */ |
475 | #define HAVE_ERRNO_H 1 |
476 | |
477 | /* Define to 1 if you have the <expat.h> header file. */ |
478 | /* #undef HAVE_EXPAT_H */ |
479 | |
480 | /* Define to 1 if you have the <ext2fs/ext2_fs.h> header file. */ |
481 | /* #undef HAVE_EXT2FS_EXT2_FS_H */ |
482 | |
483 | /* Define to 1 if you have the `extattr_get_file' function. */ |
484 | /* #undef HAVE_EXTATTR_GET_FILE */ |
485 | |
486 | /* Define to 1 if you have the `extattr_list_file' function. */ |
487 | /* #undef HAVE_EXTATTR_LIST_FILE */ |
488 | |
489 | /* Define to 1 if you have the `extattr_set_fd' function. */ |
490 | /* #undef HAVE_EXTATTR_SET_FD */ |
491 | |
492 | /* Define to 1 if you have the `extattr_set_file' function. */ |
493 | /* #undef HAVE_EXTATTR_SET_FILE */ |
494 | |
495 | /* Define to 1 if EXTATTR_NAMESPACE_USER is defined in sys/extattr.h. */ |
496 | /* #undef HAVE_DECL_EXTATTR_NAMESPACE_USER */ |
497 | |
498 | /* Define to 1 if you have the declaration of `GETACL', and to 0 if you don't. |
499 | */ |
500 | /* #undef HAVE_DECL_GETACL */ |
501 | |
502 | /* Define to 1 if you have the declaration of `GETACLCNT', and to 0 if you |
503 | don't. */ |
504 | /* #undef HAVE_DECL_GETACLCNT */ |
505 | |
506 | /* Define to 1 if you have the `fchdir' function. */ |
507 | #define HAVE_FCHDIR 1 |
508 | |
509 | /* Define to 1 if you have the `fchflags' function. */ |
510 | /* #undef HAVE_FCHFLAGS */ |
511 | |
512 | /* Define to 1 if you have the `fchmod' function. */ |
513 | #define HAVE_FCHMOD 1 |
514 | |
515 | /* Define to 1 if you have the `fchown' function. */ |
516 | #define HAVE_FCHOWN 1 |
517 | |
518 | /* Define to 1 if you have the `fcntl' function. */ |
519 | #define HAVE_FCNTL 1 |
520 | |
521 | /* Define to 1 if you have the <fcntl.h> header file. */ |
522 | #define HAVE_FCNTL_H 1 |
523 | |
524 | /* Define to 1 if you have the `fdopendir' function. */ |
525 | #define HAVE_FDOPENDIR 1 |
526 | |
527 | /* Define to 1 if you have the `fgetea' function. */ |
528 | /* #undef HAVE_FGETEA */ |
529 | |
530 | /* Define to 1 if you have the `fgetxattr' function. */ |
531 | #define HAVE_FGETXATTR 1 |
532 | |
533 | /* Define to 1 if you have the `flistea' function. */ |
534 | /* #undef HAVE_FLISTEA */ |
535 | |
536 | /* Define to 1 if you have the `flistxattr' function. */ |
537 | #define HAVE_FLISTXATTR 1 |
538 | |
539 | /* Define to 1 if you have the `fork' function. */ |
540 | #define HAVE_FORK 1 |
541 | |
542 | /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ |
543 | #define HAVE_FSEEKO 1 |
544 | |
545 | /* Define to 1 if you have the `fsetea' function. */ |
546 | /* #undef HAVE_FSETEA */ |
547 | |
548 | /* Define to 1 if you have the `fsetxattr' function. */ |
549 | #define HAVE_FSETXATTR 1 |
550 | |
551 | /* Define to 1 if you have the `fstat' function. */ |
552 | #define HAVE_FSTAT 1 |
553 | |
554 | /* Define to 1 if you have the `fstatat' function. */ |
555 | #define HAVE_FSTATAT 1 |
556 | |
557 | /* Define to 1 if you have the `fstatfs' function. */ |
558 | #define HAVE_FSTATFS 1 |
559 | |
560 | /* Define to 1 if you have the `fstatvfs' function. */ |
561 | #define HAVE_FSTATVFS 1 |
562 | |
563 | /* Define to 1 if you have the `ftruncate' function. */ |
564 | #define HAVE_FTRUNCATE 1 |
565 | |
566 | /* Define to 1 if you have the `futimens' function. */ |
567 | #define HAVE_FUTIMENS 1 |
568 | |
569 | /* Define to 1 if you have the `futimes' function. */ |
570 | #define HAVE_FUTIMES 1 |
571 | |
572 | /* Define to 1 if you have the `futimesat' function. */ |
573 | #define HAVE_FUTIMESAT 1 |
574 | |
575 | /* Define to 1 if you have the `getea' function. */ |
576 | /* #undef HAVE_GETEA */ |
577 | |
578 | /* Define to 1 if you have the `geteuid' function. */ |
579 | #define HAVE_GETEUID 1 |
580 | |
581 | /* Define to 1 if you have the `getgrgid_r' function. */ |
582 | #define HAVE_GETGRGID_R 1 |
583 | |
584 | /* Define to 1 if you have the `getgrnam_r' function. */ |
585 | #define HAVE_GETGRNAM_R 1 |
586 | |
587 | /* Define to 1 if you have the `getpid' function. */ |
588 | #define HAVE_GETPID 1 |
589 | |
590 | /* Define to 1 if you have the `getpwnam_r' function. */ |
591 | #define HAVE_GETPWNAM_R 1 |
592 | |
593 | /* Define to 1 if you have the `getpwuid_r' function. */ |
594 | #define HAVE_GETPWUID_R 1 |
595 | |
596 | /* Define to 1 if you have the `getvfsbyname' function. */ |
597 | /* #undef HAVE_GETVFSBYNAME */ |
598 | |
599 | /* Define to 1 if you have the `getxattr' function. */ |
600 | #define HAVE_GETXATTR 1 |
601 | |
602 | /* Define to 1 if you have the `gmtime_r' function. */ |
603 | #define HAVE_GMTIME_R 1 |
604 | |
605 | /* Define to 1 if you have the <grp.h> header file. */ |
606 | #define HAVE_GRP_H 1 |
607 | |
608 | /* Define to 1 if you have the `iconv' function. */ |
609 | #define HAVE_ICONV 1 |
610 | |
611 | /* Define to 1 if you have the <iconv.h> header file. */ |
612 | #define HAVE_ICONV_H 1 |
613 | |
614 | /* Define to 1 if you have the <inttypes.h> header file. */ |
615 | #define HAVE_INTTYPES_H 1 |
616 | |
617 | /* Define to 1 if you have the <io.h> header file. */ |
618 | /* #undef HAVE_IO_H */ |
619 | |
620 | /* Define to 1 if you have the <langinfo.h> header file. */ |
621 | #define HAVE_LANGINFO_H 1 |
622 | |
623 | /* Define to 1 if you have the `lchflags' function. */ |
624 | /* #undef HAVE_LCHFLAGS */ |
625 | |
626 | /* Define to 1 if you have the `lchmod' function. */ |
627 | #define HAVE_LCHMOD 1 |
628 | |
629 | /* Define to 1 if you have the `lchown' function. */ |
630 | #define HAVE_LCHOWN 1 |
631 | |
632 | /* Define to 1 if you have the `lgetea' function. */ |
633 | /* #undef HAVE_LGETEA */ |
634 | |
635 | /* Define to 1 if you have the `lgetxattr' function. */ |
636 | #define HAVE_LGETXATTR 1 |
637 | |
638 | /* Define to 1 if you have the `acl' library (-lacl). */ |
639 | /* #undef HAVE_LIBACL */ |
640 | |
641 | /* Define to 1 if you have the `attr' library (-lattr). */ |
642 | /* #undef HAVE_LIBATTR */ |
643 | |
644 | /* Define to 1 if you have the `bsdxml' library (-lbsdxml). */ |
645 | /* #undef HAVE_LIBBSDXML */ |
646 | |
647 | /* Define to 1 if you have the `bz2' library (-lbz2). */ |
648 | /* #undef HAVE_LIBBZ2 */ |
649 | |
650 | /* Define to 1 if you have the `b2' library (-lb2). */ |
651 | /* #undef HAVE_LIBB2 */ |
652 | |
653 | /* Define to 1 if you have the <blake2.h> header file. */ |
654 | /* #undef HAVE_BLAKE2_H */ |
655 | |
656 | /* Define to 1 if you have the `charset' library (-lcharset). */ |
657 | /* #undef HAVE_LIBCHARSET */ |
658 | |
659 | /* Define to 1 if you have the `crypto' library (-lcrypto). */ |
660 | #define HAVE_LIBCRYPTO 1 |
661 | |
662 | /* Define to 1 if you have the `expat' library (-lexpat). */ |
663 | /* #undef HAVE_LIBEXPAT */ |
664 | |
665 | /* Define to 1 if you have the `gcc' library (-lgcc). */ |
666 | /* #undef HAVE_LIBGCC */ |
667 | |
668 | /* Define to 1 if you have the `lz4' library (-llz4). */ |
669 | /* #undef HAVE_LIBLZ4 */ |
670 | |
671 | /* Define to 1 if you have the `lzma' library (-llzma). */ |
672 | /* #undef HAVE_LIBLZMA */ |
673 | |
674 | /* Define to 1 if you have the `lzmadec' library (-llzmadec). */ |
675 | /* #undef HAVE_LIBLZMADEC */ |
676 | |
677 | /* Define to 1 if you have the `lzo2' library (-llzo2). */ |
678 | /* #undef HAVE_LIBLZO2 */ |
679 | |
680 | /* Define to 1 if you have the `mbedcrypto' library (-lmbedcrypto). */ |
681 | /* #undef HAVE_LIBMBEDCRYPTO */ |
682 | |
683 | /* Define to 1 if you have the `nettle' library (-lnettle). */ |
684 | /* #undef HAVE_LIBNETTLE */ |
685 | |
686 | /* Define to 1 if you have the `pcre' library (-lpcre). */ |
687 | /* #undef HAVE_LIBPCRE */ |
688 | |
689 | /* Define to 1 if you have the `pcreposix' library (-lpcreposix). */ |
690 | /* #undef HAVE_LIBPCREPOSIX */ |
691 | |
692 | /* Define to 1 if you have the `xml2' library (-lxml2). */ |
693 | /* #undef HAVE_LIBXML2 */ |
694 | |
695 | /* Define to 1 if you have the <libxml/xmlreader.h> header file. */ |
696 | /* #undef HAVE_LIBXML_XMLREADER_H */ |
697 | |
698 | /* Define to 1 if you have the <libxml/xmlwriter.h> header file. */ |
699 | /* #undef HAVE_LIBXML_XMLWRITER_H */ |
700 | |
701 | /* Define to 1 if you have the `z' library (-lz). */ |
702 | #define HAVE_LIBZ 1 |
703 | |
704 | /* Define to 1 if you have the `zstd' library (-lzstd). */ |
705 | /* #undef HAVE_LIBZSTD */ |
706 | |
707 | /* Define to 1 if you have the `zstd' library (-lzstd) with compression |
708 | support. */ |
709 | /* #undef HAVE_LIBZSTD_COMPRESSOR */ |
710 | |
711 | /* Define to 1 if you have the <limits.h> header file. */ |
712 | #define HAVE_LIMITS_H 1 |
713 | |
714 | /* Define to 1 if you have the `link' function. */ |
715 | #define HAVE_LINK 1 |
716 | |
717 | /* Define to 1 if you have the `linkat' function. */ |
718 | #define HAVE_LINKAT 1 |
719 | |
720 | /* Define to 1 if you have the <linux/fiemap.h> header file. */ |
721 | #define HAVE_LINUX_FIEMAP_H 1 |
722 | |
723 | /* Define to 1 if you have the <linux/fs.h> header file. */ |
724 | #define HAVE_LINUX_FS_H 1 |
725 | |
726 | /* Define to 1 if you have the <linux/magic.h> header file. */ |
727 | #define HAVE_LINUX_MAGIC_H 1 |
728 | |
729 | /* Define to 1 if you have the <linux/types.h> header file. */ |
730 | #define HAVE_LINUX_TYPES_H 1 |
731 | |
732 | /* Define to 1 if you have the `listea' function. */ |
733 | /* #undef HAVE_LISTEA */ |
734 | |
735 | /* Define to 1 if you have the `listxattr' function. */ |
736 | #define HAVE_LISTXATTR 1 |
737 | |
738 | /* Define to 1 if you have the `llistea' function. */ |
739 | /* #undef HAVE_LLISTEA */ |
740 | |
741 | /* Define to 1 if you have the `llistxattr' function. */ |
742 | #define HAVE_LLISTXATTR 1 |
743 | |
744 | /* Define to 1 if you have the <localcharset.h> header file. */ |
745 | /* #undef HAVE_LOCALCHARSET_H */ |
746 | |
747 | /* Define to 1 if you have the `locale_charset' function. */ |
748 | /* #undef HAVE_LOCALE_CHARSET */ |
749 | |
750 | /* Define to 1 if you have the <locale.h> header file. */ |
751 | #define HAVE_LOCALE_H 1 |
752 | |
753 | /* Define to 1 if you have the `localtime_r' function. */ |
754 | #define HAVE_LOCALTIME_R 1 |
755 | |
756 | /* Define to 1 if the system has the type `long long int'. */ |
757 | /* #undef HAVE_LONG_LONG_INT */ |
758 | |
759 | /* Define to 1 if you have the `lsetea' function. */ |
760 | /* #undef HAVE_LSETEA */ |
761 | |
762 | /* Define to 1 if you have the `lsetxattr' function. */ |
763 | #define HAVE_LSETXATTR 1 |
764 | |
765 | /* Define to 1 if you have the `lstat' function. */ |
766 | #define HAVE_LSTAT 1 |
767 | |
768 | /* Define to 1 if `lstat' has the bug that it succeeds when given the |
769 | zero-length file name argument. */ |
770 | /* #undef HAVE_LSTAT_EMPTY_STRING_BUG */ |
771 | |
772 | /* Define to 1 if you have the `lutimes' function. */ |
773 | #define HAVE_LUTIMES 1 |
774 | |
775 | /* Define to 1 if you have the <lz4hc.h> header file. */ |
776 | /* #undef HAVE_LZ4HC_H */ |
777 | |
778 | /* Define to 1 if you have the <lz4.h> header file. */ |
779 | /* #undef HAVE_LZ4_H */ |
780 | |
781 | /* Define to 1 if you have the <lzmadec.h> header file. */ |
782 | /* #undef HAVE_LZMADEC_H */ |
783 | |
784 | /* Define to 1 if you have the <lzma.h> header file. */ |
785 | /* #undef HAVE_LZMA_H */ |
786 | |
787 | /* Define to 1 if you have a working `lzma_stream_encoder_mt' function. */ |
788 | /* #undef HAVE_LZMA_STREAM_ENCODER_MT */ |
789 | |
790 | /* Define to 1 if you have the <lzo/lzo1x.h> header file. */ |
791 | /* #undef HAVE_LZO_LZO1X_H */ |
792 | |
793 | /* Define to 1 if you have the <lzo/lzoconf.h> header file. */ |
794 | /* #undef HAVE_LZO_LZOCONF_H */ |
795 | |
796 | /* Define to 1 if you have the `mbrtowc' function. */ |
797 | #define HAVE_MBRTOWC 1 |
798 | |
799 | /* Define to 1 if you have the <membership.h> header file. */ |
800 | /* #undef HAVE_MEMBERSHIP_H */ |
801 | |
802 | /* Define to 1 if you have the `memmove' function. */ |
803 | #define HAVE_MEMMOVE 1 |
804 | |
805 | /* Define to 1 if you have the <memory.h> header file. */ |
806 | #define HAVE_MEMORY_H 1 |
807 | |
808 | /* Define to 1 if you have the `mkdir' function. */ |
809 | #define HAVE_MKDIR 1 |
810 | |
811 | /* Define to 1 if you have the `mkfifo' function. */ |
812 | #define HAVE_MKFIFO 1 |
813 | |
814 | /* Define to 1 if you have the `mknod' function. */ |
815 | #define HAVE_MKNOD 1 |
816 | |
817 | /* Define to 1 if you have the `mkstemp' function. */ |
818 | #define HAVE_MKSTEMP 1 |
819 | |
820 | /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ |
821 | /* #undef HAVE_NDIR_H */ |
822 | |
823 | /* Define to 1 if you have the <nettle/aes.h> header file. */ |
824 | /* #undef HAVE_NETTLE_AES_H */ |
825 | |
826 | /* Define to 1 if you have the <nettle/hmac.h> header file. */ |
827 | /* #undef HAVE_NETTLE_HMAC_H */ |
828 | |
829 | /* Define to 1 if you have the <nettle/md5.h> header file. */ |
830 | /* #undef HAVE_NETTLE_MD5_H */ |
831 | |
832 | /* Define to 1 if you have the <nettle/pbkdf2.h> header file. */ |
833 | /* #undef HAVE_NETTLE_PBKDF2_H */ |
834 | |
835 | /* Define to 1 if you have the <nettle/ripemd160.h> header file. */ |
836 | /* #undef HAVE_NETTLE_RIPEMD160_H */ |
837 | |
838 | /* Define to 1 if you have the <nettle/sha.h> header file. */ |
839 | /* #undef HAVE_NETTLE_SHA_H */ |
840 | |
841 | /* Define to 1 if you have the `nl_langinfo' function. */ |
842 | #define HAVE_NL_LANGINFO 1 |
843 | |
844 | /* Define to 1 if you have the `openat' function. */ |
845 | #define HAVE_OPENAT 1 |
846 | |
847 | /* Define to 1 if you have the <paths.h> header file. */ |
848 | #define HAVE_PATHS_H 1 |
849 | |
850 | /* Define to 1 if you have the <pcreposix.h> header file. */ |
851 | /* #undef HAVE_PCREPOSIX_H */ |
852 | |
853 | /* Define to 1 if you have the `pipe' function. */ |
854 | #define HAVE_PIPE 1 |
855 | |
856 | /* Define to 1 if you have the `PKCS5_PBKDF2_HMAC_SHA1' function. */ |
857 | /* #undef HAVE_PKCS5_PBKDF2_HMAC_SHA1 */ |
858 | |
859 | /* Define to 1 if you have the `poll' function. */ |
860 | #define HAVE_POLL 1 |
861 | |
862 | /* Define to 1 if you have the <poll.h> header file. */ |
863 | #define HAVE_POLL_H 1 |
864 | |
865 | /* Define to 1 if you have the `posix_spawnp' function. */ |
866 | #define HAVE_POSIX_SPAWNP 1 |
867 | |
868 | /* Define to 1 if you have the <process.h> header file. */ |
869 | /* #undef HAVE_PROCESS_H */ |
870 | |
871 | /* Define to 1 if you have the <pthread.h> header file. */ |
872 | #define HAVE_PTHREAD_H 1 |
873 | |
874 | /* Define to 1 if you have the <pwd.h> header file. */ |
875 | #define HAVE_PWD_H 1 |
876 | |
877 | /* Define to 1 if you have the `readdir_r' function. */ |
878 | #define HAVE_READDIR_R 1 |
879 | |
880 | /* Define to 1 if you have the `readlink' function. */ |
881 | #define HAVE_READLINK 1 |
882 | |
883 | /* Define to 1 if you have the `readlinkat' function. */ |
884 | #define HAVE_READLINKAT 1 |
885 | |
886 | /* Define to 1 if you have the `readpassphrase' function. */ |
887 | /* #undef HAVE_READPASSPHRASE */ |
888 | |
889 | /* Define to 1 if you have the <readpassphrase.h> header file. */ |
890 | /* #undef HAVE_READPASSPHRASE_H */ |
891 | |
892 | /* Define to 1 if you have the <regex.h> header file. */ |
893 | #define HAVE_REGEX_H 1 |
894 | |
895 | /* Define to 1 if you have the `select' function. */ |
896 | #define HAVE_SELECT 1 |
897 | |
898 | /* Define to 1 if you have the `setenv' function. */ |
899 | #define HAVE_SETENV 1 |
900 | |
901 | /* Define to 1 if you have the `setlocale' function. */ |
902 | #define HAVE_SETLOCALE 1 |
903 | |
904 | /* Define to 1 if you have the `sigaction' function. */ |
905 | #define HAVE_SIGACTION 1 |
906 | |
907 | /* Define to 1 if you have the <signal.h> header file. */ |
908 | #define HAVE_SIGNAL_H 1 |
909 | |
910 | /* Define to 1 if you have the <spawn.h> header file. */ |
911 | #define HAVE_SPAWN_H 1 |
912 | |
913 | /* Define to 1 if you have the `statfs' function. */ |
914 | #define HAVE_STATFS 1 |
915 | |
916 | /* Define to 1 if you have the `statvfs' function. */ |
917 | #define HAVE_STATVFS 1 |
918 | |
919 | /* Define to 1 if `stat' has the bug that it succeeds when given the |
920 | zero-length file name argument. */ |
921 | /* #undef HAVE_STAT_EMPTY_STRING_BUG */ |
922 | |
923 | /* Define to 1 if you have the <stdarg.h> header file. */ |
924 | #define HAVE_STDARG_H 1 |
925 | |
926 | /* Define to 1 if you have the <stdint.h> header file. */ |
927 | #define HAVE_STDINT_H 1 |
928 | |
929 | /* Define to 1 if you have the <stdlib.h> header file. */ |
930 | #define HAVE_STDLIB_H 1 |
931 | |
932 | /* Define to 1 if you have the `strchr' function. */ |
933 | #define HAVE_STRCHR 1 |
934 | |
935 | /* Define to 1 if you have the `strnlen' function. */ |
936 | #define HAVE_STRNLEN 1 |
937 | |
938 | /* Define to 1 if you have the `strdup' function. */ |
939 | #define HAVE_STRDUP 1 |
940 | |
941 | /* Define to 1 if you have the `strerror' function. */ |
942 | #define HAVE_STRERROR 1 |
943 | |
944 | /* Define to 1 if you have the `strerror_r' function. */ |
945 | #define HAVE_STRERROR_R 1 |
946 | |
947 | /* Define to 1 if you have the `strftime' function. */ |
948 | #define HAVE_STRFTIME 1 |
949 | |
950 | /* Define to 1 if you have the <strings.h> header file. */ |
951 | #define HAVE_STRINGS_H 1 |
952 | |
953 | /* Define to 1 if you have the <string.h> header file. */ |
954 | #define HAVE_STRING_H 1 |
955 | |
956 | /* Define to 1 if you have the `strrchr' function. */ |
957 | #define HAVE_STRRCHR 1 |
958 | |
959 | /* Define to 1 if `f_namemax' is a member of `struct statfs'. */ |
960 | /* #undef HAVE_STRUCT_STATFS_F_NAMEMAX */ |
961 | |
962 | /* Define to 1 if `f_iosize' is a member of `struct statvfs'. */ |
963 | /* #undef HAVE_STRUCT_STATVFS_F_IOSIZE */ |
964 | |
965 | /* Define to 1 if `st_birthtime' is a member of `struct stat'. */ |
966 | /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIME */ |
967 | |
968 | /* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */ |
969 | /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC */ |
970 | |
971 | /* Define to 1 if `st_blksize' is a member of `struct stat'. */ |
972 | #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 |
973 | |
974 | /* Define to 1 if `st_flags' is a member of `struct stat'. */ |
975 | /* #undef HAVE_STRUCT_STAT_ST_FLAGS */ |
976 | |
977 | /* Define to 1 if `st_mtimespec.tv_nsec' is a member of `struct stat'. */ |
978 | /* #undef HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC */ |
979 | |
980 | /* Define to 1 if `st_mtime_n' is a member of `struct stat'. */ |
981 | /* #undef HAVE_STRUCT_STAT_ST_MTIME_N */ |
982 | |
983 | /* Define to 1 if `st_mtime_usec' is a member of `struct stat'. */ |
984 | /* #undef HAVE_STRUCT_STAT_ST_MTIME_USEC */ |
985 | |
986 | /* Define to 1 if `st_mtim.tv_nsec' is a member of `struct stat'. */ |
987 | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 |
988 | |
989 | /* Define to 1 if `st_umtime' is a member of `struct stat'. */ |
990 | /* #undef HAVE_STRUCT_STAT_ST_UMTIME */ |
991 | |
992 | /* Define to 1 if `tm_gmtoff' is a member of `struct tm'. */ |
993 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 |
994 | |
995 | /* Define to 1 if `__tm_gmtoff' is a member of `struct tm'. */ |
996 | /* #undef HAVE_STRUCT_TM___TM_GMTOFF */ |
997 | |
998 | /* Define to 1 if you have `struct vfsconf'. */ |
999 | /* #undef HAVE_STRUCT_VFSCONF */ |
1000 | |
1001 | /* Define to 1 if you have `struct xvfsconf'. */ |
1002 | /* #undef HAVE_STRUCT_XVFSCONF */ |
1003 | |
1004 | /* Define to 1 if you have the `symlink' function. */ |
1005 | #define HAVE_SYMLINK 1 |
1006 | |
1007 | /* Define to 1 if you have the <sys/acl.h> header file. */ |
1008 | /* #undef HAVE_SYS_ACL_H */ |
1009 | |
1010 | /* Define to 1 if you have the <sys/cdefs.h> header file. */ |
1011 | #define HAVE_SYS_CDEFS_H 1 |
1012 | |
1013 | /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'. |
1014 | */ |
1015 | /* #undef HAVE_SYS_DIR_H */ |
1016 | |
1017 | /* Define to 1 if you have the <sys/ea.h> header file. */ |
1018 | /* #undef HAVE_SYS_EA_H */ |
1019 | |
1020 | /* Define to 1 if you have the <sys/extattr.h> header file. */ |
1021 | /* #undef HAVE_SYS_EXTATTR_H */ |
1022 | |
1023 | /* Define to 1 if you have the <sys/ioctl.h> header file. */ |
1024 | #define HAVE_SYS_IOCTL_H 1 |
1025 | |
1026 | /* Define to 1 if you have the <sys/mkdev.h> header file. */ |
1027 | /* #undef HAVE_SYS_MKDEV_H */ |
1028 | |
1029 | /* Define to 1 if you have the <sys/mount.h> header file. */ |
1030 | /* #undef HAVE_SYS_MOUNT_H */ |
1031 | |
1032 | /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'. |
1033 | */ |
1034 | /* #undef HAVE_SYS_NDIR_H */ |
1035 | |
1036 | /* Define to 1 if you have the <sys/param.h> header file. */ |
1037 | #define HAVE_SYS_PARAM_H 1 |
1038 | |
1039 | /* Define to 1 if you have the <sys/poll.h> header file. */ |
1040 | #define HAVE_SYS_POLL_H 1 |
1041 | |
1042 | /* Define to 1 if you have the <sys/richacl.h> header file. */ |
1043 | /* #undef HAVE_SYS_RICHACL_H */ |
1044 | |
1045 | /* Define to 1 if you have the <sys/select.h> header file. */ |
1046 | #define HAVE_SYS_SELECT_H 1 |
1047 | |
1048 | /* Define to 1 if you have the <sys/statfs.h> header file. */ |
1049 | #define HAVE_SYS_STATFS_H 1 |
1050 | |
1051 | /* Define to 1 if you have the <sys/statvfs.h> header file. */ |
1052 | #define HAVE_SYS_STATVFS_H 1 |
1053 | |
1054 | /* Define to 1 if you have the <sys/stat.h> header file. */ |
1055 | #define HAVE_SYS_STAT_H 1 |
1056 | |
1057 | |
1058 | /* Define to 1 if you have the <sys/sysmacros.h> header file. */ |
1059 | #define HAVE_SYS_SYSMACROS_H 1 |
1060 | |
1061 | /* Define to 1 if you have the <sys/time.h> header file. */ |
1062 | #define HAVE_SYS_TIME_H 1 |
1063 | |
1064 | /* Define to 1 if you have the <sys/sysmacros.h> header file. */ |
1065 | #define HAVE_SYS_SYSMACROS_H 1 |
1066 | |
1067 | /* Define to 1 if you have the <sys/types.h> header file. */ |
1068 | #define HAVE_SYS_TYPES_H 1 |
1069 | |
1070 | /* Define to 1 if you have the <sys/utime.h> header file. */ |
1071 | /* #undef HAVE_SYS_UTIME_H */ |
1072 | |
1073 | /* Define to 1 if you have the <sys/utsname.h> header file. */ |
1074 | #define HAVE_SYS_UTSNAME_H 1 |
1075 | |
1076 | /* Define to 1 if you have the <sys/vfs.h> header file. */ |
1077 | #define HAVE_SYS_VFS_H 1 |
1078 | |
1079 | /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */ |
1080 | #define HAVE_SYS_WAIT_H 1 |
1081 | |
1082 | /* Define to 1 if you have the <sys/xattr.h> header file. */ |
1083 | #define HAVE_SYS_XATTR_H 1 |
1084 | |
1085 | /* Define to 1 if you have the `timegm' function. */ |
1086 | #define HAVE_TIMEGM 1 |
1087 | |
1088 | /* Define to 1 if you have the <time.h> header file. */ |
1089 | #define HAVE_TIME_H 1 |
1090 | |
1091 | /* Define to 1 if you have the `tzset' function. */ |
1092 | #define HAVE_TZSET 1 |
1093 | |
1094 | /* Define to 1 if you have the <unistd.h> header file. */ |
1095 | #define HAVE_UNISTD_H 1 |
1096 | |
1097 | /* Define to 1 if you have the `unlinkat' function. */ |
1098 | #define HAVE_UNLINKAT 1 |
1099 | |
1100 | /* Define to 1 if you have the `unsetenv' function. */ |
1101 | #define HAVE_UNSETENV 1 |
1102 | |
1103 | /* Define to 1 if the system has the type `unsigned long long'. */ |
1104 | /* #undef HAVE_UNSIGNED_LONG_LONG */ |
1105 | |
1106 | /* Define to 1 if the system has the type `unsigned long long int'. */ |
1107 | /* #undef HAVE_UNSIGNED_LONG_LONG_INT */ |
1108 | |
1109 | /* Define to 1 if you have the `utime' function. */ |
1110 | #define HAVE_UTIME 1 |
1111 | |
1112 | /* Define to 1 if you have the `utimensat' function. */ |
1113 | #define HAVE_UTIMENSAT 1 |
1114 | |
1115 | /* Define to 1 if you have the `utimes' function. */ |
1116 | #define HAVE_UTIMES 1 |
1117 | |
1118 | /* Define to 1 if you have the <utime.h> header file. */ |
1119 | #define HAVE_UTIME_H 1 |
1120 | |
1121 | /* Define to 1 if you have the `vfork' function. */ |
1122 | #define HAVE_VFORK 1 |
1123 | |
1124 | /* Define to 1 if you have the `vprintf' function. */ |
1125 | #define HAVE_VPRINTF 1 |
1126 | |
1127 | /* Define to 1 if you have the <wchar.h> header file. */ |
1128 | #define HAVE_WCHAR_H 1 |
1129 | |
1130 | /* Define to 1 if the system has the type `wchar_t'. */ |
1131 | #define HAVE_WCHAR_T 1 |
1132 | |
1133 | /* Define to 1 if you have the `wcrtomb' function. */ |
1134 | #define HAVE_WCRTOMB 1 |
1135 | |
1136 | /* Define to 1 if you have the `wcscmp' function. */ |
1137 | #define HAVE_WCSCMP 1 |
1138 | |
1139 | /* Define to 1 if you have the `wcscpy' function. */ |
1140 | #define HAVE_WCSCPY 1 |
1141 | |
1142 | /* Define to 1 if you have the `wcslen' function. */ |
1143 | #define HAVE_WCSLEN 1 |
1144 | |
1145 | /* Define to 1 if you have the `wctomb' function. */ |
1146 | #define HAVE_WCTOMB 1 |
1147 | |
1148 | /* Define to 1 if you have the <wctype.h> header file. */ |
1149 | #define HAVE_WCTYPE_H 1 |
1150 | |
1151 | /* Define to 1 if you have the <wincrypt.h> header file. */ |
1152 | /* #undef HAVE_WINCRYPT_H */ |
1153 | |
1154 | /* Define to 1 if you have the <windows.h> header file. */ |
1155 | /* #undef HAVE_WINDOWS_H */ |
1156 | |
1157 | /* Define to 1 if you have the <winioctl.h> header file. */ |
1158 | /* #undef HAVE_WINIOCTL_H */ |
1159 | |
1160 | /* Define to 1 if you have _CrtSetReportMode in <crtdbg.h> */ |
1161 | /* #undef HAVE__CrtSetReportMode */ |
1162 | |
1163 | /* Define to 1 if you have the `wmemcmp' function. */ |
1164 | #define HAVE_WMEMCMP 1 |
1165 | |
1166 | /* Define to 1 if you have the `wmemcpy' function. */ |
1167 | #define HAVE_WMEMCPY 1 |
1168 | |
1169 | /* Define to 1 if you have the `wmemmove' function. */ |
1170 | #define HAVE_WMEMMOVE 1 |
1171 | |
1172 | /* Define to 1 if you have a working EXT2_IOC_GETFLAGS */ |
1173 | /* #undef HAVE_WORKING_EXT2_IOC_GETFLAGS */ |
1174 | |
1175 | /* Define to 1 if you have a working FS_IOC_GETFLAGS */ |
1176 | #define HAVE_WORKING_FS_IOC_GETFLAGS 1 |
1177 | |
1178 | /* Define to 1 if you have the <zlib.h> header file. */ |
1179 | #define HAVE_ZLIB_H 1 |
1180 | |
1181 | /* Define to 1 if you have the <zstd.h> header file. */ |
1182 | /* #undef HAVE_ZSTD_H */ |
1183 | |
1184 | /* Define to 1 if you have the `_ctime64_s' function. */ |
1185 | /* #undef HAVE__CTIME64_S */ |
1186 | |
1187 | /* Define to 1 if you have the `_fseeki64' function. */ |
1188 | /* #undef HAVE__FSEEKI64 */ |
1189 | |
1190 | /* Define to 1 if you have the `_get_timezone' function. */ |
1191 | /* #undef HAVE__GET_TIMEZONE */ |
1192 | |
1193 | /* Define to 1 if you have the `_gmtime64_s' function. */ |
1194 | /* #undef HAVE__GMTIME64_S */ |
1195 | |
1196 | /* Define to 1 if you have the `_localtime64_s' function. */ |
1197 | /* #undef HAVE__LOCALTIME64_S */ |
1198 | |
1199 | /* Define to 1 if you have the `_mkgmtime64' function. */ |
1200 | /* #undef HAVE__MKGMTIME64 */ |
1201 | |
1202 | /* Define as const if the declaration of iconv() needs const. */ |
1203 | #define ICONV_CONST |
1204 | |
1205 | /* Version number of libarchive as a single integer */ |
1206 | #define LIBARCHIVE_VERSION_NUMBER "3006002" |
1207 | |
1208 | /* Version number of libarchive */ |
1209 | #define LIBARCHIVE_VERSION_STRING "3.6.2" |
1210 | |
1211 | /* Define to 1 if `lstat' dereferences a symlink specified with a trailing |
1212 | slash. */ |
1213 | /* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */ |
1214 | |
1215 | /* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>. |
1216 | */ |
1217 | /* #undef MAJOR_IN_MKDEV */ |
1218 | |
1219 | /* Define to 1 if `major', `minor', and `makedev' are declared in |
1220 | <sysmacros.h>. */ |
1221 | #define MAJOR_IN_SYSMACROS 1 |
1222 | |
1223 | /* Define to 1 if your C compiler doesn't accept -c and -o together. */ |
1224 | /* #undef NO_MINUS_C_MINUS_O */ |
1225 | |
1226 | /* The size of `wchar_t', as computed by sizeof. */ |
1227 | #define SIZEOF_WCHAR_T 4 |
1228 | |
1229 | /* Define to 1 if strerror_r returns char *. */ |
1230 | /* #undef STRERROR_R_CHAR_P */ |
1231 | |
1232 | /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ |
1233 | #define TIME_WITH_SYS_TIME 1 |
1234 | |
1235 | /* |
1236 | * Some platform requires a macro to use extension functions. |
1237 | */ |
1238 | #define SAFE_TO_DEFINE_EXTENSIONS 1 |
1239 | #ifdef SAFE_TO_DEFINE_EXTENSIONS |
1240 | /* Enable extensions on AIX 3, Interix. */ |
1241 | #ifndef _ALL_SOURCE |
1242 | # define _ALL_SOURCE 1 |
1243 | #endif |
1244 | /* Enable GNU extensions on systems that have them. */ |
1245 | #ifndef _GNU_SOURCE |
1246 | # define _GNU_SOURCE 1 |
1247 | #endif |
1248 | /* Enable threading extensions on Solaris. */ |
1249 | #ifndef _POSIX_PTHREAD_SEMANTICS |
1250 | # define _POSIX_PTHREAD_SEMANTICS 1 |
1251 | #endif |
1252 | /* Enable extensions on HP NonStop. */ |
1253 | #ifndef _TANDEM_SOURCE |
1254 | # define _TANDEM_SOURCE 1 |
1255 | #endif |
1256 | /* Enable general extensions on Solaris. */ |
1257 | #ifndef __EXTENSIONS__ |
1258 | # define __EXTENSIONS__ 1 |
1259 | #endif |
1260 | #endif /* SAFE_TO_DEFINE_EXTENSIONS */ |
1261 | |
1262 | /* Version number of package */ |
1263 | #define VERSION "3.6.2" |
1264 | |
1265 | /* Number of bits in a file offset, on hosts where this is settable. */ |
1266 | /* #undef _FILE_OFFSET_BITS */ |
1267 | |
1268 | /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ |
1269 | /* #undef _LARGEFILE_SOURCE */ |
1270 | |
1271 | /* Define for large files, on AIX-style hosts. */ |
1272 | /* #undef _LARGE_FILES */ |
1273 | |
1274 | /* Define to control Windows SDK version */ |
1275 | #ifndef NTDDI_VERSION |
1276 | /* #undef NTDDI_VERSION */ |
1277 | #endif // NTDDI_VERSION |
1278 | |
1279 | #ifndef _WIN32_WINNT |
1280 | /* #undef _WIN32_WINNT */ |
1281 | #endif // _WIN32_WINNT |
1282 | |
1283 | #ifndef WINVER |
1284 | /* #undef WINVER */ |
1285 | #endif // WINVER |
1286 | |
1287 | /* Define to empty if `const' does not conform to ANSI C. */ |
1288 | /* #undef const */ |
1289 | |
1290 | /* Define to `int' if <sys/types.h> doesn't define. */ |
1291 | /* #undef gid_t */ |
1292 | |
1293 | /* Define to `unsigned long' if <sys/types.h> does not define. */ |
1294 | /* #undef id_t */ |
1295 | |
1296 | /* Define to `int' if <sys/types.h> does not define. */ |
1297 | /* #undef mode_t */ |
1298 | |
1299 | /* Define to `long long' if <sys/types.h> does not define. */ |
1300 | /* #undef off_t */ |
1301 | |
1302 | /* Define to `int' if <sys/types.h> doesn't define. */ |
1303 | /* #undef pid_t */ |
1304 | |
1305 | /* Define to `unsigned int' if <sys/types.h> does not define. */ |
1306 | /* #undef size_t */ |
1307 | |
1308 | /* Define to `int' if <sys/types.h> does not define. */ |
1309 | /* #undef ssize_t */ |
1310 | |
1311 | /* Define to `int' if <sys/types.h> doesn't define. */ |
1312 | /* #undef uid_t */ |
1313 | |
1314 | /* Define to `int' if <sys/types.h> does not define. */ |
1315 | /* #undef intptr_t */ |
1316 | |
1317 | /* Define to `unsigned int' if <sys/types.h> does not define. */ |
1318 | /* #undef uintptr_t */ |
1319 | |