libarchive-static 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/Makefile +6 -0
- data/ext/extconf.rb +61 -0
- data/ext/libarchive-0.1.1/COPYING.libarchive +60 -0
- data/ext/libarchive-0.1.1/LICENSE.libbzip2 +42 -0
- data/ext/libarchive-0.1.1/README.txt +143 -0
- data/ext/libarchive-0.1.1/ext/Makefile.in +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +31 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.h +6 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.c +32 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.h +6 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +29 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.h +6 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +32 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.h +6 -0
- data/ext/libarchive-0.1.1/ext/config.h.in +22 -0
- data/ext/libarchive-0.1.1/ext/configure +3904 -0
- data/ext/libarchive-0.1.1/ext/configure.in +11 -0
- data/ext/libarchive-0.1.1/ext/depend +19 -0
- data/ext/libarchive-0.1.1/ext/extconf.rb +6 -0
- data/ext/libarchive-0.1.1/ext/install-sh +250 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +89 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +84 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +1015 -0
- data/ext/libarchive-0.1.1/ext/libarchive_internal.h +155 -0
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +328 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +52 -0
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +246 -0
- data/ext/libarchive-0.1.1/libarchive.c +1762 -0
- data/ext/libarchive-2.8.4/Makefile.in +7076 -0
- data/ext/libarchive-2.8.4/build/autoconf/check_stdcall_func.m4 +51 -0
- data/ext/libarchive-2.8.4/build/autoconf/compile +143 -0
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +1502 -0
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +1708 -0
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +630 -0
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +291 -0
- data/ext/libarchive-2.8.4/build/autoconf/la_uid_t.m4 +20 -0
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +8406 -0
- data/ext/libarchive-2.8.4/build/autoconf/missing +376 -0
- data/ext/libarchive-2.8.4/build/pkgconfig/libarchive.pc.in +10 -0
- data/ext/libarchive-2.8.4/config.h.in +772 -0
- data/ext/libarchive-2.8.4/configure +17916 -0
- data/ext/libarchive-2.8.4/libarchive/archive.h +741 -0
- data/ext/libarchive-2.8.4/libarchive/archive_check_magic.c +134 -0
- data/ext/libarchive-2.8.4/libarchive/archive_crc32.h +66 -0
- data/ext/libarchive-2.8.4/libarchive/archive_endian.h +162 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +2202 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry.h +524 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_copy_bhfi.c +74 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_copy_stat.c +77 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_link_resolver.c +405 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_private.h +184 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_stat.c +118 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_strmode.c +87 -0
- data/ext/libarchive-2.8.4/libarchive/archive_entry_xattr.c +158 -0
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +281 -0
- data/ext/libarchive-2.8.4/libarchive/archive_platform.h +165 -0
- data/ext/libarchive-2.8.4/libarchive/archive_private.h +124 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +1249 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_data_into_fd.c +93 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +198 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +570 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_private.h +62 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_set_standard_lookup.c +303 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_extract.c +182 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_fd.c +190 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_file.c +165 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +272 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_memory.c +156 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_private.h +199 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_all.c +60 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c +353 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c +444 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c +465 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_none.c +40 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_program.c +459 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c +287 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c +627 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c +708 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_all.c +43 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_ar.c +584 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +777 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_empty.c +93 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_iso9660.c +2830 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +1304 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_raw.c +185 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_tar.c +2418 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_xar.c +3151 -0
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +903 -0
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +453 -0
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +148 -0
- data/ext/libarchive-2.8.4/libarchive/archive_string_sprintf.c +164 -0
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +391 -0
- data/ext/libarchive-2.8.4/libarchive/archive_virtual.c +94 -0
- data/ext/libarchive-2.8.4/libarchive/archive_windows.c +1236 -0
- data/ext/libarchive-2.8.4/libarchive/archive_windows.h +347 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +466 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +2628 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk_private.h +38 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk_set_standard_lookup.c +262 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_open_fd.c +141 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_open_file.c +105 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_open_filename.c +162 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_open_memory.c +126 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_private.h +122 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +408 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c +492 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +477 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +257 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +347 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +438 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format.c +72 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_ar.c +550 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_by_name.c +76 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +344 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +295 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +1050 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_pax.c +1386 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_shar.c +626 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_ustar.c +587 -0
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +667 -0
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +154 -0
- data/ext/libarchive-2.8.4/libarchive/filter_fork.c +161 -0
- data/ext/libarchive-2.8.4/libarchive/filter_fork.h +41 -0
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +113 -0
- data/ext/libarchive-static-makefile +80 -0
- data/ext/libarchive-static-wrapper-makefile +22 -0
- data/ext/zlib-1.2.5/Makefile.in +257 -0
- data/ext/zlib-1.2.5/adler32.c +169 -0
- data/ext/zlib-1.2.5/compress.c +80 -0
- data/ext/zlib-1.2.5/configure +596 -0
- data/ext/zlib-1.2.5/crc32.c +442 -0
- data/ext/zlib-1.2.5/crc32.h +441 -0
- data/ext/zlib-1.2.5/deflate.c +1834 -0
- data/ext/zlib-1.2.5/deflate.h +342 -0
- data/ext/zlib-1.2.5/example.c +565 -0
- data/ext/zlib-1.2.5/gzclose.c +25 -0
- data/ext/zlib-1.2.5/gzguts.h +132 -0
- data/ext/zlib-1.2.5/gzlib.c +537 -0
- data/ext/zlib-1.2.5/gzread.c +653 -0
- data/ext/zlib-1.2.5/gzwrite.c +531 -0
- data/ext/zlib-1.2.5/infback.c +632 -0
- data/ext/zlib-1.2.5/inffast.c +340 -0
- data/ext/zlib-1.2.5/inffast.h +11 -0
- data/ext/zlib-1.2.5/inffixed.h +94 -0
- data/ext/zlib-1.2.5/inflate.c +1480 -0
- data/ext/zlib-1.2.5/inflate.h +122 -0
- data/ext/zlib-1.2.5/inftrees.c +330 -0
- data/ext/zlib-1.2.5/inftrees.h +62 -0
- data/ext/zlib-1.2.5/minigzip.c +440 -0
- data/ext/zlib-1.2.5/trees.c +1244 -0
- data/ext/zlib-1.2.5/trees.h +128 -0
- data/ext/zlib-1.2.5/uncompr.c +59 -0
- data/ext/zlib-1.2.5/zconf.h +428 -0
- data/ext/zlib-1.2.5/zlib.h +1613 -0
- data/ext/zlib-1.2.5/zutil.c +318 -0
- data/ext/zlib-1.2.5/zutil.h +274 -0
- metadata +211 -0
|
@@ -0,0 +1,772 @@
|
|
|
1
|
+
/* config.h.in. Generated from configure.ac by autoheader. */
|
|
2
|
+
|
|
3
|
+
/* MD5 via ARCHIVE_HASH_MD5_LIBC supported. */
|
|
4
|
+
#undef ARCHIVE_HASH_MD5_LIBC
|
|
5
|
+
|
|
6
|
+
/* MD5 via ARCHIVE_HASH_MD5_LIBSYSTEM supported. */
|
|
7
|
+
#undef ARCHIVE_HASH_MD5_LIBSYSTEM
|
|
8
|
+
|
|
9
|
+
/* MD5 via ARCHIVE_HASH_MD5_OPENSSL supported. */
|
|
10
|
+
#undef ARCHIVE_HASH_MD5_OPENSSL
|
|
11
|
+
|
|
12
|
+
/* RMD160 via ARCHIVE_HASH_RMD160_LIBC supported. */
|
|
13
|
+
#undef ARCHIVE_HASH_RMD160_LIBC
|
|
14
|
+
|
|
15
|
+
/* RMD160 via ARCHIVE_HASH_RMD160_OPENSSL supported. */
|
|
16
|
+
#undef ARCHIVE_HASH_RMD160_OPENSSL
|
|
17
|
+
|
|
18
|
+
/* SHA1 via ARCHIVE_HASH_SHA1_LIBC supported. */
|
|
19
|
+
#undef ARCHIVE_HASH_SHA1_LIBC
|
|
20
|
+
|
|
21
|
+
/* SHA1 via ARCHIVE_HASH_SHA1_LIBSYSTEM supported. */
|
|
22
|
+
#undef ARCHIVE_HASH_SHA1_LIBSYSTEM
|
|
23
|
+
|
|
24
|
+
/* SHA1 via ARCHIVE_HASH_SHA1_OPENSSL supported. */
|
|
25
|
+
#undef ARCHIVE_HASH_SHA1_OPENSSL
|
|
26
|
+
|
|
27
|
+
/* SHA256 via ARCHIVE_HASH_SHA256_LIBC supported. */
|
|
28
|
+
#undef ARCHIVE_HASH_SHA256_LIBC
|
|
29
|
+
|
|
30
|
+
/* SHA256 via ARCHIVE_HASH_SHA256_LIBC2 supported. */
|
|
31
|
+
#undef ARCHIVE_HASH_SHA256_LIBC2
|
|
32
|
+
|
|
33
|
+
/* SHA256 via ARCHIVE_HASH_SHA256_LIBC3 supported. */
|
|
34
|
+
#undef ARCHIVE_HASH_SHA256_LIBC3
|
|
35
|
+
|
|
36
|
+
/* SHA256 via ARCHIVE_HASH_SHA256_LIBSYSTEM supported. */
|
|
37
|
+
#undef ARCHIVE_HASH_SHA256_LIBSYSTEM
|
|
38
|
+
|
|
39
|
+
/* SHA256 via ARCHIVE_HASH_SHA256_OPENSSL supported. */
|
|
40
|
+
#undef ARCHIVE_HASH_SHA256_OPENSSL
|
|
41
|
+
|
|
42
|
+
/* SHA384 via ARCHIVE_HASH_SHA384_LIBC supported. */
|
|
43
|
+
#undef ARCHIVE_HASH_SHA384_LIBC
|
|
44
|
+
|
|
45
|
+
/* SHA384 via ARCHIVE_HASH_SHA384_LIBC2 supported. */
|
|
46
|
+
#undef ARCHIVE_HASH_SHA384_LIBC2
|
|
47
|
+
|
|
48
|
+
/* SHA384 via ARCHIVE_HASH_SHA384_LIBC3 supported. */
|
|
49
|
+
#undef ARCHIVE_HASH_SHA384_LIBC3
|
|
50
|
+
|
|
51
|
+
/* SHA384 via ARCHIVE_HASH_SHA384_LIBSYSTEM supported. */
|
|
52
|
+
#undef ARCHIVE_HASH_SHA384_LIBSYSTEM
|
|
53
|
+
|
|
54
|
+
/* SHA384 via ARCHIVE_HASH_SHA384_OPENSSL supported. */
|
|
55
|
+
#undef ARCHIVE_HASH_SHA384_OPENSSL
|
|
56
|
+
|
|
57
|
+
/* SHA512 via ARCHIVE_HASH_SHA512_LIBC supported. */
|
|
58
|
+
#undef ARCHIVE_HASH_SHA512_LIBC
|
|
59
|
+
|
|
60
|
+
/* SHA512 via ARCHIVE_HASH_SHA512_LIBC2 supported. */
|
|
61
|
+
#undef ARCHIVE_HASH_SHA512_LIBC2
|
|
62
|
+
|
|
63
|
+
/* SHA512 via ARCHIVE_HASH_SHA512_LIBC3 supported. */
|
|
64
|
+
#undef ARCHIVE_HASH_SHA512_LIBC3
|
|
65
|
+
|
|
66
|
+
/* SHA512 via ARCHIVE_HASH_SHA512_LIBSYSTEM supported. */
|
|
67
|
+
#undef ARCHIVE_HASH_SHA512_LIBSYSTEM
|
|
68
|
+
|
|
69
|
+
/* SHA512 via ARCHIVE_HASH_SHA512_OPENSSL supported. */
|
|
70
|
+
#undef ARCHIVE_HASH_SHA512_OPENSSL
|
|
71
|
+
|
|
72
|
+
/* Version number of bsdcpio */
|
|
73
|
+
#undef BSDCPIO_VERSION_STRING
|
|
74
|
+
|
|
75
|
+
/* Version number of bsdtar */
|
|
76
|
+
#undef BSDTAR_VERSION_STRING
|
|
77
|
+
|
|
78
|
+
/* Define to 1 if you have the `acl_create_entry' function. */
|
|
79
|
+
#undef HAVE_ACL_CREATE_ENTRY
|
|
80
|
+
|
|
81
|
+
/* Define to 1 if you have the `acl_get_link' function. */
|
|
82
|
+
#undef HAVE_ACL_GET_LINK
|
|
83
|
+
|
|
84
|
+
/* Define to 1 if you have the `acl_get_link_np' function. */
|
|
85
|
+
#undef HAVE_ACL_GET_LINK_NP
|
|
86
|
+
|
|
87
|
+
/* Define to 1 if you have the `acl_get_perm' function. */
|
|
88
|
+
#undef HAVE_ACL_GET_PERM
|
|
89
|
+
|
|
90
|
+
/* Define to 1 if you have the `acl_get_perm_np' function. */
|
|
91
|
+
#undef HAVE_ACL_GET_PERM_NP
|
|
92
|
+
|
|
93
|
+
/* Define to 1 if you have the `acl_init' function. */
|
|
94
|
+
#undef HAVE_ACL_INIT
|
|
95
|
+
|
|
96
|
+
/* Define to 1 if you have the <acl/libacl.h> header file. */
|
|
97
|
+
#undef HAVE_ACL_LIBACL_H
|
|
98
|
+
|
|
99
|
+
/* Define to 1 if the system has the type `acl_permset_t'. */
|
|
100
|
+
#undef HAVE_ACL_PERMSET_T
|
|
101
|
+
|
|
102
|
+
/* Define to 1 if you have the `acl_set_fd' function. */
|
|
103
|
+
#undef HAVE_ACL_SET_FD
|
|
104
|
+
|
|
105
|
+
/* Define to 1 if you have the `acl_set_fd_np' function. */
|
|
106
|
+
#undef HAVE_ACL_SET_FD_NP
|
|
107
|
+
|
|
108
|
+
/* Define to 1 if you have the `acl_set_file' function. */
|
|
109
|
+
#undef HAVE_ACL_SET_FILE
|
|
110
|
+
|
|
111
|
+
/* True for systems with POSIX ACL support */
|
|
112
|
+
#undef HAVE_ACL_USER
|
|
113
|
+
|
|
114
|
+
/* Define to 1 if you have the <attr/xattr.h> header file. */
|
|
115
|
+
#undef HAVE_ATTR_XATTR_H
|
|
116
|
+
|
|
117
|
+
/* Define to 1 if you have the <bzlib.h> header file. */
|
|
118
|
+
#undef HAVE_BZLIB_H
|
|
119
|
+
|
|
120
|
+
/* Define to 1 if you have the `chflags' function. */
|
|
121
|
+
#undef HAVE_CHFLAGS
|
|
122
|
+
|
|
123
|
+
/* Define to 1 if you have the `chown' function. */
|
|
124
|
+
#undef HAVE_CHOWN
|
|
125
|
+
|
|
126
|
+
/* Define to 1 if you have the `chroot' function. */
|
|
127
|
+
#undef HAVE_CHROOT
|
|
128
|
+
|
|
129
|
+
/* Define to 1 if you have the <ctype.h> header file. */
|
|
130
|
+
#undef HAVE_CTYPE_H
|
|
131
|
+
|
|
132
|
+
/* Define to 1 if you have the `cygwin_conv_path' function. */
|
|
133
|
+
#undef HAVE_CYGWIN_CONV_PATH
|
|
134
|
+
|
|
135
|
+
/* Define to 1 if you have the declaration of `EXTATTR_NAMESPACE_USER', and to
|
|
136
|
+
0 if you don't. */
|
|
137
|
+
#undef HAVE_DECL_EXTATTR_NAMESPACE_USER
|
|
138
|
+
|
|
139
|
+
/* Define to 1 if you have the declaration of `INT64_MAX', and to 0 if you
|
|
140
|
+
don't. */
|
|
141
|
+
#undef HAVE_DECL_INT64_MAX
|
|
142
|
+
|
|
143
|
+
/* Define to 1 if you have the declaration of `INT64_MIN', and to 0 if you
|
|
144
|
+
don't. */
|
|
145
|
+
#undef HAVE_DECL_INT64_MIN
|
|
146
|
+
|
|
147
|
+
/* Define to 1 if you have the declaration of `SIZE_MAX', and to 0 if you
|
|
148
|
+
don't. */
|
|
149
|
+
#undef HAVE_DECL_SIZE_MAX
|
|
150
|
+
|
|
151
|
+
/* Define to 1 if you have the declaration of `SSIZE_MAX', and to 0 if you
|
|
152
|
+
don't. */
|
|
153
|
+
#undef HAVE_DECL_SSIZE_MAX
|
|
154
|
+
|
|
155
|
+
/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
|
|
156
|
+
don't. */
|
|
157
|
+
#undef HAVE_DECL_STRERROR_R
|
|
158
|
+
|
|
159
|
+
/* Define to 1 if you have the declaration of `UINT32_MAX', and to 0 if you
|
|
160
|
+
don't. */
|
|
161
|
+
#undef HAVE_DECL_UINT32_MAX
|
|
162
|
+
|
|
163
|
+
/* Define to 1 if you have the declaration of `UINT64_MAX', and to 0 if you
|
|
164
|
+
don't. */
|
|
165
|
+
#undef HAVE_DECL_UINT64_MAX
|
|
166
|
+
|
|
167
|
+
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
|
168
|
+
*/
|
|
169
|
+
#undef HAVE_DIRENT_H
|
|
170
|
+
|
|
171
|
+
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
172
|
+
#undef HAVE_DLFCN_H
|
|
173
|
+
|
|
174
|
+
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
|
|
175
|
+
#undef HAVE_DOPRNT
|
|
176
|
+
|
|
177
|
+
/* Define to 1 if nl_langinfo supports D_MD_ORDER */
|
|
178
|
+
#undef HAVE_D_MD_ORDER
|
|
179
|
+
|
|
180
|
+
/* A possible errno value for invalid file format errors */
|
|
181
|
+
#undef HAVE_EFTYPE
|
|
182
|
+
|
|
183
|
+
/* A possible errno value for invalid file format errors */
|
|
184
|
+
#undef HAVE_EILSEQ
|
|
185
|
+
|
|
186
|
+
/* Define to 1 if you have the <errno.h> header file. */
|
|
187
|
+
#undef HAVE_ERRNO_H
|
|
188
|
+
|
|
189
|
+
/* Define to 1 if you have the <expat.h> header file. */
|
|
190
|
+
#undef HAVE_EXPAT_H
|
|
191
|
+
|
|
192
|
+
/* Define to 1 if you have the <ext2fs/ext2_fs.h> header file. */
|
|
193
|
+
#undef HAVE_EXT2FS_EXT2_FS_H
|
|
194
|
+
|
|
195
|
+
/* Define to 1 if you have the `extattr_get_file' function. */
|
|
196
|
+
#undef HAVE_EXTATTR_GET_FILE
|
|
197
|
+
|
|
198
|
+
/* Define to 1 if you have the `extattr_list_file' function. */
|
|
199
|
+
#undef HAVE_EXTATTR_LIST_FILE
|
|
200
|
+
|
|
201
|
+
/* Define to 1 if you have the `extattr_set_fd' function. */
|
|
202
|
+
#undef HAVE_EXTATTR_SET_FD
|
|
203
|
+
|
|
204
|
+
/* Define to 1 if you have the `extattr_set_file' function. */
|
|
205
|
+
#undef HAVE_EXTATTR_SET_FILE
|
|
206
|
+
|
|
207
|
+
/* Define to 1 if you have the `fchdir' function. */
|
|
208
|
+
#undef HAVE_FCHDIR
|
|
209
|
+
|
|
210
|
+
/* Define to 1 if you have the `fchflags' function. */
|
|
211
|
+
#undef HAVE_FCHFLAGS
|
|
212
|
+
|
|
213
|
+
/* Define to 1 if you have the `fchmod' function. */
|
|
214
|
+
#undef HAVE_FCHMOD
|
|
215
|
+
|
|
216
|
+
/* Define to 1 if you have the `fchown' function. */
|
|
217
|
+
#undef HAVE_FCHOWN
|
|
218
|
+
|
|
219
|
+
/* Define to 1 if you have the `fcntl' function. */
|
|
220
|
+
#undef HAVE_FCNTL
|
|
221
|
+
|
|
222
|
+
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
223
|
+
#undef HAVE_FCNTL_H
|
|
224
|
+
|
|
225
|
+
/* Define to 1 if you have the `fork' function. */
|
|
226
|
+
#undef HAVE_FORK
|
|
227
|
+
|
|
228
|
+
/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
|
|
229
|
+
#undef HAVE_FSEEKO
|
|
230
|
+
|
|
231
|
+
/* Define to 1 if you have the `fsetxattr' function. */
|
|
232
|
+
#undef HAVE_FSETXATTR
|
|
233
|
+
|
|
234
|
+
/* Define to 1 if you have the `fstat' function. */
|
|
235
|
+
#undef HAVE_FSTAT
|
|
236
|
+
|
|
237
|
+
/* Define to 1 if you have the `ftruncate' function. */
|
|
238
|
+
#undef HAVE_FTRUNCATE
|
|
239
|
+
|
|
240
|
+
/* Define to 1 if you have the `futimens' function. */
|
|
241
|
+
#undef HAVE_FUTIMENS
|
|
242
|
+
|
|
243
|
+
/* Define to 1 if you have the `futimes' function. */
|
|
244
|
+
#undef HAVE_FUTIMES
|
|
245
|
+
|
|
246
|
+
/* Define to 1 if you have the `geteuid' function. */
|
|
247
|
+
#undef HAVE_GETEUID
|
|
248
|
+
|
|
249
|
+
/* Define to 1 if you have the `getgrgid_r' function. */
|
|
250
|
+
#undef HAVE_GETGRGID_R
|
|
251
|
+
|
|
252
|
+
/* Define to 1 if you have the `getgrnam_r' function. */
|
|
253
|
+
#undef HAVE_GETGRNAM_R
|
|
254
|
+
|
|
255
|
+
/* Define to 1 if you have the `getpid' function. */
|
|
256
|
+
#undef HAVE_GETPID
|
|
257
|
+
|
|
258
|
+
/* Define to 1 if you have the `getpwnam_r' function. */
|
|
259
|
+
#undef HAVE_GETPWNAM_R
|
|
260
|
+
|
|
261
|
+
/* Define to 1 if you have the `getpwuid_r' function. */
|
|
262
|
+
#undef HAVE_GETPWUID_R
|
|
263
|
+
|
|
264
|
+
/* Define to 1 if you have the `getxattr' function. */
|
|
265
|
+
#undef HAVE_GETXATTR
|
|
266
|
+
|
|
267
|
+
/* Define to 1 if you have the <grp.h> header file. */
|
|
268
|
+
#undef HAVE_GRP_H
|
|
269
|
+
|
|
270
|
+
/* Define to 1 if the system has the type `intmax_t'. */
|
|
271
|
+
#undef HAVE_INTMAX_T
|
|
272
|
+
|
|
273
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
274
|
+
#undef HAVE_INTTYPES_H
|
|
275
|
+
|
|
276
|
+
/* Define to 1 if you have the <io.h> header file. */
|
|
277
|
+
#undef HAVE_IO_H
|
|
278
|
+
|
|
279
|
+
/* Define to 1 if you have the <langinfo.h> header file. */
|
|
280
|
+
#undef HAVE_LANGINFO_H
|
|
281
|
+
|
|
282
|
+
/* Define to 1 if you have the `lchflags' function. */
|
|
283
|
+
#undef HAVE_LCHFLAGS
|
|
284
|
+
|
|
285
|
+
/* Define to 1 if you have the `lchmod' function. */
|
|
286
|
+
#undef HAVE_LCHMOD
|
|
287
|
+
|
|
288
|
+
/* Define to 1 if you have the `lchown' function. */
|
|
289
|
+
#undef HAVE_LCHOWN
|
|
290
|
+
|
|
291
|
+
/* Define to 1 if you have the `lgetxattr' function. */
|
|
292
|
+
#undef HAVE_LGETXATTR
|
|
293
|
+
|
|
294
|
+
/* Define to 1 if you have the `acl' library (-lacl). */
|
|
295
|
+
#undef HAVE_LIBACL
|
|
296
|
+
|
|
297
|
+
/* Define to 1 if you have the `attr' library (-lattr). */
|
|
298
|
+
#undef HAVE_LIBATTR
|
|
299
|
+
|
|
300
|
+
/* Define to 1 if you have the `bz2' library (-lbz2). */
|
|
301
|
+
#undef HAVE_LIBBZ2
|
|
302
|
+
|
|
303
|
+
/* Define to 1 if you have the `expat' library (-lexpat). */
|
|
304
|
+
#undef HAVE_LIBEXPAT
|
|
305
|
+
|
|
306
|
+
/* Define to 1 if you have the `lzma' library (-llzma). */
|
|
307
|
+
#undef HAVE_LIBLZMA
|
|
308
|
+
|
|
309
|
+
/* Define to 1 if you have the `lzmadec' library (-llzmadec). */
|
|
310
|
+
#undef HAVE_LIBLZMADEC
|
|
311
|
+
|
|
312
|
+
/* Define to 1 if you have the `xml2' library (-lxml2). */
|
|
313
|
+
#undef HAVE_LIBXML2
|
|
314
|
+
|
|
315
|
+
/* Define to 1 if you have the <libxml/xmlreader.h> header file. */
|
|
316
|
+
#undef HAVE_LIBXML_XMLREADER_H
|
|
317
|
+
|
|
318
|
+
/* Define to 1 if you have the `z' library (-lz). */
|
|
319
|
+
#undef HAVE_LIBZ
|
|
320
|
+
|
|
321
|
+
/* Define to 1 if you have the <limits.h> header file. */
|
|
322
|
+
#undef HAVE_LIMITS_H
|
|
323
|
+
|
|
324
|
+
/* Define to 1 if you have the `link' function. */
|
|
325
|
+
#undef HAVE_LINK
|
|
326
|
+
|
|
327
|
+
/* Define to 1 if you have the <linux/fs.h> header file. */
|
|
328
|
+
#undef HAVE_LINUX_FS_H
|
|
329
|
+
|
|
330
|
+
/* Define to 1 if you have the `listxattr' function. */
|
|
331
|
+
#undef HAVE_LISTXATTR
|
|
332
|
+
|
|
333
|
+
/* Define to 1 if you have the `llistxattr' function. */
|
|
334
|
+
#undef HAVE_LLISTXATTR
|
|
335
|
+
|
|
336
|
+
/* Define to 1 if you have the <locale.h> header file. */
|
|
337
|
+
#undef HAVE_LOCALE_H
|
|
338
|
+
|
|
339
|
+
/* Define to 1 if the system has the type `long long int'. */
|
|
340
|
+
#undef HAVE_LONG_LONG_INT
|
|
341
|
+
|
|
342
|
+
/* Define to 1 if you have the `lsetxattr' function. */
|
|
343
|
+
#undef HAVE_LSETXATTR
|
|
344
|
+
|
|
345
|
+
/* Define to 1 if you have the `lstat' function. */
|
|
346
|
+
#undef HAVE_LSTAT
|
|
347
|
+
|
|
348
|
+
/* Define to 1 if `lstat' has the bug that it succeeds when given the
|
|
349
|
+
zero-length file name argument. */
|
|
350
|
+
#undef HAVE_LSTAT_EMPTY_STRING_BUG
|
|
351
|
+
|
|
352
|
+
/* Define to 1 if you have the `lutimes' function. */
|
|
353
|
+
#undef HAVE_LUTIMES
|
|
354
|
+
|
|
355
|
+
/* Define to 1 if you have the <lzmadec.h> header file. */
|
|
356
|
+
#undef HAVE_LZMADEC_H
|
|
357
|
+
|
|
358
|
+
/* Define to 1 if you have the <lzma.h> header file. */
|
|
359
|
+
#undef HAVE_LZMA_H
|
|
360
|
+
|
|
361
|
+
/* Define to 1 if you have the `memmove' function. */
|
|
362
|
+
#undef HAVE_MEMMOVE
|
|
363
|
+
|
|
364
|
+
/* Define to 1 if you have the <memory.h> header file. */
|
|
365
|
+
#undef HAVE_MEMORY_H
|
|
366
|
+
|
|
367
|
+
/* Define to 1 if you have the `memset' function. */
|
|
368
|
+
#undef HAVE_MEMSET
|
|
369
|
+
|
|
370
|
+
/* Define to 1 if you have the `mkdir' function. */
|
|
371
|
+
#undef HAVE_MKDIR
|
|
372
|
+
|
|
373
|
+
/* Define to 1 if you have the `mkfifo' function. */
|
|
374
|
+
#undef HAVE_MKFIFO
|
|
375
|
+
|
|
376
|
+
/* Define to 1 if you have the `mknod' function. */
|
|
377
|
+
#undef HAVE_MKNOD
|
|
378
|
+
|
|
379
|
+
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
|
380
|
+
#undef HAVE_NDIR_H
|
|
381
|
+
|
|
382
|
+
/* Define to 1 if you have the `nl_langinfo' function. */
|
|
383
|
+
#undef HAVE_NL_LANGINFO
|
|
384
|
+
|
|
385
|
+
/* Define to 1 if you have the <paths.h> header file. */
|
|
386
|
+
#undef HAVE_PATHS_H
|
|
387
|
+
|
|
388
|
+
/* Define to 1 if you have the `pipe' function. */
|
|
389
|
+
#undef HAVE_PIPE
|
|
390
|
+
|
|
391
|
+
/* Define to 1 if you have the `poll' function. */
|
|
392
|
+
#undef HAVE_POLL
|
|
393
|
+
|
|
394
|
+
/* Define to 1 if you have the <poll.h> header file. */
|
|
395
|
+
#undef HAVE_POLL_H
|
|
396
|
+
|
|
397
|
+
/* Define to 1 if you have the <pwd.h> header file. */
|
|
398
|
+
#undef HAVE_PWD_H
|
|
399
|
+
|
|
400
|
+
/* Define to 1 if you have the `readlink' function. */
|
|
401
|
+
#undef HAVE_READLINK
|
|
402
|
+
|
|
403
|
+
/* Define to 1 if you have the <regex.h> header file. */
|
|
404
|
+
#undef HAVE_REGEX_H
|
|
405
|
+
|
|
406
|
+
/* Define to 1 if you have the `select' function. */
|
|
407
|
+
#undef HAVE_SELECT
|
|
408
|
+
|
|
409
|
+
/* Define to 1 if you have the `setenv' function. */
|
|
410
|
+
#undef HAVE_SETENV
|
|
411
|
+
|
|
412
|
+
/* Define to 1 if you have the `setlocale' function. */
|
|
413
|
+
#undef HAVE_SETLOCALE
|
|
414
|
+
|
|
415
|
+
/* Define to 1 if you have the `sigaction' function. */
|
|
416
|
+
#undef HAVE_SIGACTION
|
|
417
|
+
|
|
418
|
+
/* Define to 1 if you have the <signal.h> header file. */
|
|
419
|
+
#undef HAVE_SIGNAL_H
|
|
420
|
+
|
|
421
|
+
/* Define to 1 if `stat' has the bug that it succeeds when given the
|
|
422
|
+
zero-length file name argument. */
|
|
423
|
+
#undef HAVE_STAT_EMPTY_STRING_BUG
|
|
424
|
+
|
|
425
|
+
/* Define to 1 if you have the <stdarg.h> header file. */
|
|
426
|
+
#undef HAVE_STDARG_H
|
|
427
|
+
|
|
428
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
|
429
|
+
#undef HAVE_STDINT_H
|
|
430
|
+
|
|
431
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
432
|
+
#undef HAVE_STDLIB_H
|
|
433
|
+
|
|
434
|
+
/* Define to 1 if you have the `strchr' function. */
|
|
435
|
+
#undef HAVE_STRCHR
|
|
436
|
+
|
|
437
|
+
/* Define to 1 if you have the `strdup' function. */
|
|
438
|
+
#undef HAVE_STRDUP
|
|
439
|
+
|
|
440
|
+
/* Define to 1 if you have the `strerror' function. */
|
|
441
|
+
#undef HAVE_STRERROR
|
|
442
|
+
|
|
443
|
+
/* Define to 1 if you have the `strerror_r' function. */
|
|
444
|
+
#undef HAVE_STRERROR_R
|
|
445
|
+
|
|
446
|
+
/* Define to 1 if you have the `strftime' function. */
|
|
447
|
+
#undef HAVE_STRFTIME
|
|
448
|
+
|
|
449
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
|
450
|
+
#undef HAVE_STRINGS_H
|
|
451
|
+
|
|
452
|
+
/* Define to 1 if you have the <string.h> header file. */
|
|
453
|
+
#undef HAVE_STRING_H
|
|
454
|
+
|
|
455
|
+
/* Define to 1 if you have the `strncpy_s' function. */
|
|
456
|
+
#undef HAVE_STRNCPY_S
|
|
457
|
+
|
|
458
|
+
/* Define to 1 if you have the `strrchr' function. */
|
|
459
|
+
#undef HAVE_STRRCHR
|
|
460
|
+
|
|
461
|
+
/* Define to 1 if `st_birthtime' is a member of `struct stat'. */
|
|
462
|
+
#undef HAVE_STRUCT_STAT_ST_BIRTHTIME
|
|
463
|
+
|
|
464
|
+
/* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
|
|
465
|
+
#undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
|
|
466
|
+
|
|
467
|
+
/* Define to 1 if `st_blksize' is a member of `struct stat'. */
|
|
468
|
+
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
|
|
469
|
+
|
|
470
|
+
/* Define to 1 if `st_flags' is a member of `struct stat'. */
|
|
471
|
+
#undef HAVE_STRUCT_STAT_ST_FLAGS
|
|
472
|
+
|
|
473
|
+
/* Define to 1 if `st_mtimespec.tv_nsec' is a member of `struct stat'. */
|
|
474
|
+
#undef HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
|
|
475
|
+
|
|
476
|
+
/* Define to 1 if `st_mtime_n' is a member of `struct stat'. */
|
|
477
|
+
#undef HAVE_STRUCT_STAT_ST_MTIME_N
|
|
478
|
+
|
|
479
|
+
/* Define to 1 if `st_mtime_usec' is a member of `struct stat'. */
|
|
480
|
+
#undef HAVE_STRUCT_STAT_ST_MTIME_USEC
|
|
481
|
+
|
|
482
|
+
/* Define to 1 if `st_mtim.tv_nsec' is a member of `struct stat'. */
|
|
483
|
+
#undef HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
|
|
484
|
+
|
|
485
|
+
/* Define to 1 if `st_umtime' is a member of `struct stat'. */
|
|
486
|
+
#undef HAVE_STRUCT_STAT_ST_UMTIME
|
|
487
|
+
|
|
488
|
+
/* Define to 1 if you have the `symlink' function. */
|
|
489
|
+
#undef HAVE_SYMLINK
|
|
490
|
+
|
|
491
|
+
/* Define to 1 if you have the <sys/acl.h> header file. */
|
|
492
|
+
#undef HAVE_SYS_ACL_H
|
|
493
|
+
|
|
494
|
+
/* Define to 1 if you have the <sys/cdefs.h> header file. */
|
|
495
|
+
#undef HAVE_SYS_CDEFS_H
|
|
496
|
+
|
|
497
|
+
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
|
498
|
+
*/
|
|
499
|
+
#undef HAVE_SYS_DIR_H
|
|
500
|
+
|
|
501
|
+
/* Define to 1 if you have the <sys/extattr.h> header file. */
|
|
502
|
+
#undef HAVE_SYS_EXTATTR_H
|
|
503
|
+
|
|
504
|
+
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
|
505
|
+
#undef HAVE_SYS_IOCTL_H
|
|
506
|
+
|
|
507
|
+
/* Define to 1 if you have the <sys/mkdev.h> header file. */
|
|
508
|
+
#undef HAVE_SYS_MKDEV_H
|
|
509
|
+
|
|
510
|
+
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
|
511
|
+
*/
|
|
512
|
+
#undef HAVE_SYS_NDIR_H
|
|
513
|
+
|
|
514
|
+
/* Define to 1 if you have the <sys/param.h> header file. */
|
|
515
|
+
#undef HAVE_SYS_PARAM_H
|
|
516
|
+
|
|
517
|
+
/* Define to 1 if you have the <sys/poll.h> header file. */
|
|
518
|
+
#undef HAVE_SYS_POLL_H
|
|
519
|
+
|
|
520
|
+
/* Define to 1 if you have the <sys/select.h> header file. */
|
|
521
|
+
#undef HAVE_SYS_SELECT_H
|
|
522
|
+
|
|
523
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
524
|
+
#undef HAVE_SYS_STAT_H
|
|
525
|
+
|
|
526
|
+
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
527
|
+
#undef HAVE_SYS_TIME_H
|
|
528
|
+
|
|
529
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
530
|
+
#undef HAVE_SYS_TYPES_H
|
|
531
|
+
|
|
532
|
+
/* Define to 1 if you have the <sys/utime.h> header file. */
|
|
533
|
+
#undef HAVE_SYS_UTIME_H
|
|
534
|
+
|
|
535
|
+
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
|
|
536
|
+
#undef HAVE_SYS_WAIT_H
|
|
537
|
+
|
|
538
|
+
/* Define to 1 if you have the <sys/xattr.h> header file. */
|
|
539
|
+
#undef HAVE_SYS_XATTR_H
|
|
540
|
+
|
|
541
|
+
/* Define to 1 if you have the `timegm' function. */
|
|
542
|
+
#undef HAVE_TIMEGM
|
|
543
|
+
|
|
544
|
+
/* Define to 1 if you have the <time.h> header file. */
|
|
545
|
+
#undef HAVE_TIME_H
|
|
546
|
+
|
|
547
|
+
/* Define to 1 if you have the `tzset' function. */
|
|
548
|
+
#undef HAVE_TZSET
|
|
549
|
+
|
|
550
|
+
/* Define to 1 if the system has the type `uintmax_t'. */
|
|
551
|
+
#undef HAVE_UINTMAX_T
|
|
552
|
+
|
|
553
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
|
554
|
+
#undef HAVE_UNISTD_H
|
|
555
|
+
|
|
556
|
+
/* Define to 1 if you have the `unsetenv' function. */
|
|
557
|
+
#undef HAVE_UNSETENV
|
|
558
|
+
|
|
559
|
+
/* Define to 1 if the system has the type `unsigned long long'. */
|
|
560
|
+
#undef HAVE_UNSIGNED_LONG_LONG
|
|
561
|
+
|
|
562
|
+
/* Define to 1 if the system has the type `unsigned long long int'. */
|
|
563
|
+
#undef HAVE_UNSIGNED_LONG_LONG_INT
|
|
564
|
+
|
|
565
|
+
/* Define to 1 if you have the `utime' function. */
|
|
566
|
+
#undef HAVE_UTIME
|
|
567
|
+
|
|
568
|
+
/* Define to 1 if you have the `utimensat' function. */
|
|
569
|
+
#undef HAVE_UTIMENSAT
|
|
570
|
+
|
|
571
|
+
/* Define to 1 if you have the `utimes' function. */
|
|
572
|
+
#undef HAVE_UTIMES
|
|
573
|
+
|
|
574
|
+
/* Define to 1 if you have the <utime.h> header file. */
|
|
575
|
+
#undef HAVE_UTIME_H
|
|
576
|
+
|
|
577
|
+
/* Define to 1 if you have the `vfork' function. */
|
|
578
|
+
#undef HAVE_VFORK
|
|
579
|
+
|
|
580
|
+
/* Define to 1 if you have the `vprintf' function. */
|
|
581
|
+
#undef HAVE_VPRINTF
|
|
582
|
+
|
|
583
|
+
/* Define to 1 if you have the <wchar.h> header file. */
|
|
584
|
+
#undef HAVE_WCHAR_H
|
|
585
|
+
|
|
586
|
+
/* Define to 1 if the system has the type `wchar_t'. */
|
|
587
|
+
#undef HAVE_WCHAR_T
|
|
588
|
+
|
|
589
|
+
/* Define to 1 if you have the `wcrtomb' function. */
|
|
590
|
+
#undef HAVE_WCRTOMB
|
|
591
|
+
|
|
592
|
+
/* Define to 1 if you have the `wcscmp' function. */
|
|
593
|
+
#undef HAVE_WCSCMP
|
|
594
|
+
|
|
595
|
+
/* Define to 1 if you have the `wcscpy' function. */
|
|
596
|
+
#undef HAVE_WCSCPY
|
|
597
|
+
|
|
598
|
+
/* Define to 1 if you have the `wcslen' function. */
|
|
599
|
+
#undef HAVE_WCSLEN
|
|
600
|
+
|
|
601
|
+
/* Define to 1 if you have the `wctomb' function. */
|
|
602
|
+
#undef HAVE_WCTOMB
|
|
603
|
+
|
|
604
|
+
/* Define to 1 if you have the <wctype.h> header file. */
|
|
605
|
+
#undef HAVE_WCTYPE_H
|
|
606
|
+
|
|
607
|
+
/* Define to 1 if you have the <windows.h> header file. */
|
|
608
|
+
#undef HAVE_WINDOWS_H
|
|
609
|
+
|
|
610
|
+
/* Define to 1 if you have the `wmemcmp' function. */
|
|
611
|
+
#undef HAVE_WMEMCMP
|
|
612
|
+
|
|
613
|
+
/* Define to 1 if you have the `wmemcpy' function. */
|
|
614
|
+
#undef HAVE_WMEMCPY
|
|
615
|
+
|
|
616
|
+
/* Define to 1 if you have the <zlib.h> header file. */
|
|
617
|
+
#undef HAVE_ZLIB_H
|
|
618
|
+
|
|
619
|
+
/* Version number of libarchive as a single integer */
|
|
620
|
+
#undef LIBARCHIVE_VERSION_NUMBER
|
|
621
|
+
|
|
622
|
+
/* Version number of libarchive */
|
|
623
|
+
#undef LIBARCHIVE_VERSION_STRING
|
|
624
|
+
|
|
625
|
+
/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
|
|
626
|
+
slash. */
|
|
627
|
+
#undef LSTAT_FOLLOWS_SLASHED_SYMLINK
|
|
628
|
+
|
|
629
|
+
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
630
|
+
*/
|
|
631
|
+
#undef LT_OBJDIR
|
|
632
|
+
|
|
633
|
+
/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
|
|
634
|
+
*/
|
|
635
|
+
#undef MAJOR_IN_MKDEV
|
|
636
|
+
|
|
637
|
+
/* Define to 1 if `major', `minor', and `makedev' are declared in
|
|
638
|
+
<sysmacros.h>. */
|
|
639
|
+
#undef MAJOR_IN_SYSMACROS
|
|
640
|
+
|
|
641
|
+
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
|
642
|
+
#undef NO_MINUS_C_MINUS_O
|
|
643
|
+
|
|
644
|
+
/* Name of package */
|
|
645
|
+
#undef PACKAGE
|
|
646
|
+
|
|
647
|
+
/* Define to the address where bug reports for this package should be sent. */
|
|
648
|
+
#undef PACKAGE_BUGREPORT
|
|
649
|
+
|
|
650
|
+
/* Define to the full name of this package. */
|
|
651
|
+
#undef PACKAGE_NAME
|
|
652
|
+
|
|
653
|
+
/* Define to the full name and version of this package. */
|
|
654
|
+
#undef PACKAGE_STRING
|
|
655
|
+
|
|
656
|
+
/* Define to the one symbol short name of this package. */
|
|
657
|
+
#undef PACKAGE_TARNAME
|
|
658
|
+
|
|
659
|
+
/* Define to the home page for this package. */
|
|
660
|
+
#undef PACKAGE_URL
|
|
661
|
+
|
|
662
|
+
/* Define to the version of this package. */
|
|
663
|
+
#undef PACKAGE_VERSION
|
|
664
|
+
|
|
665
|
+
/* The size of `wchar_t', as computed by sizeof. */
|
|
666
|
+
#undef SIZEOF_WCHAR_T
|
|
667
|
+
|
|
668
|
+
/* Define to 1 if you have the ANSI C header files. */
|
|
669
|
+
#undef STDC_HEADERS
|
|
670
|
+
|
|
671
|
+
/* Define to 1 if strerror_r returns char *. */
|
|
672
|
+
#undef STRERROR_R_CHAR_P
|
|
673
|
+
|
|
674
|
+
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
|
675
|
+
#undef TIME_WITH_SYS_TIME
|
|
676
|
+
|
|
677
|
+
/* Enable extensions on AIX 3, Interix. */
|
|
678
|
+
#ifndef _ALL_SOURCE
|
|
679
|
+
# undef _ALL_SOURCE
|
|
680
|
+
#endif
|
|
681
|
+
/* Enable GNU extensions on systems that have them. */
|
|
682
|
+
#ifndef _GNU_SOURCE
|
|
683
|
+
# undef _GNU_SOURCE
|
|
684
|
+
#endif
|
|
685
|
+
/* Enable threading extensions on Solaris. */
|
|
686
|
+
#ifndef _POSIX_PTHREAD_SEMANTICS
|
|
687
|
+
# undef _POSIX_PTHREAD_SEMANTICS
|
|
688
|
+
#endif
|
|
689
|
+
/* Enable extensions on HP NonStop. */
|
|
690
|
+
#ifndef _TANDEM_SOURCE
|
|
691
|
+
# undef _TANDEM_SOURCE
|
|
692
|
+
#endif
|
|
693
|
+
/* Enable general extensions on Solaris. */
|
|
694
|
+
#ifndef __EXTENSIONS__
|
|
695
|
+
# undef __EXTENSIONS__
|
|
696
|
+
#endif
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
/* Version number of package */
|
|
700
|
+
#undef VERSION
|
|
701
|
+
|
|
702
|
+
/* Define to '0x0500' for Windows 2000 APIs. */
|
|
703
|
+
#undef WINVER
|
|
704
|
+
|
|
705
|
+
/* Number of bits in a file offset, on hosts where this is settable. */
|
|
706
|
+
#undef _FILE_OFFSET_BITS
|
|
707
|
+
|
|
708
|
+
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
|
|
709
|
+
#undef _LARGEFILE_SOURCE
|
|
710
|
+
|
|
711
|
+
/* Define for large files, on AIX-style hosts. */
|
|
712
|
+
#undef _LARGE_FILES
|
|
713
|
+
|
|
714
|
+
/* Define to 1 if on MINIX. */
|
|
715
|
+
#undef _MINIX
|
|
716
|
+
|
|
717
|
+
/* Define to 2 if the system does not provide POSIX.1 features except with
|
|
718
|
+
this defined. */
|
|
719
|
+
#undef _POSIX_1_SOURCE
|
|
720
|
+
|
|
721
|
+
/* Define to 1 if you need to in order for `stat' and other things to work. */
|
|
722
|
+
#undef _POSIX_SOURCE
|
|
723
|
+
|
|
724
|
+
/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
|
|
725
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
|
726
|
+
#define below would cause a syntax error. */
|
|
727
|
+
#undef _UINT64_T
|
|
728
|
+
|
|
729
|
+
/* Define to '0x0500' for Windows 2000 APIs. */
|
|
730
|
+
#undef _WIN32_WINNT
|
|
731
|
+
|
|
732
|
+
/* Define to empty if `const' does not conform to ANSI C. */
|
|
733
|
+
#undef const
|
|
734
|
+
|
|
735
|
+
/* Define to match typeof st_gid field of struct stat if <sys/types.h> doesn't
|
|
736
|
+
define. */
|
|
737
|
+
#undef gid_t
|
|
738
|
+
|
|
739
|
+
/* Define to `unsigned long' if <sys/types.h> does not define. */
|
|
740
|
+
#undef id_t
|
|
741
|
+
|
|
742
|
+
/* Define to the type of a signed integer type of width exactly 64 bits if
|
|
743
|
+
such a type exists and the standard includes do not define it. */
|
|
744
|
+
#undef int64_t
|
|
745
|
+
|
|
746
|
+
/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
|
|
747
|
+
not define. */
|
|
748
|
+
#undef intmax_t
|
|
749
|
+
|
|
750
|
+
/* Define to `int' if <sys/types.h> does not define. */
|
|
751
|
+
#undef mode_t
|
|
752
|
+
|
|
753
|
+
/* Define to `long long' if <sys/types.h> does not define. */
|
|
754
|
+
#undef off_t
|
|
755
|
+
|
|
756
|
+
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
|
757
|
+
#undef size_t
|
|
758
|
+
|
|
759
|
+
/* Define to match typeof st_uid field of struct stat if <sys/types.h> doesn't
|
|
760
|
+
define. */
|
|
761
|
+
#undef uid_t
|
|
762
|
+
|
|
763
|
+
/* Define to the type of an unsigned integer type of width exactly 64 bits if
|
|
764
|
+
such a type exists and the standard includes do not define it. */
|
|
765
|
+
#undef uint64_t
|
|
766
|
+
|
|
767
|
+
/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
|
|
768
|
+
do not define. */
|
|
769
|
+
#undef uintmax_t
|
|
770
|
+
|
|
771
|
+
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
|
772
|
+
#undef uintptr_t
|