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