ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/vendor/libarchive/3.3.2/build/cmake/config.h.in
Revision: 11133
Committed: Tue Jun 19 20:38:39 2018 UTC (5 years, 10 months ago) by laffer1
File size: 38199 byte(s)
Log Message:
tag libarchive

File Contents

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