libarchive-static 1.0.5 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ext/extconf.rb +2 -9
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/config.h +23 -0
- data/ext/libarchive-0.1.1/ext/config.log +230 -0
- data/ext/libarchive-0.1.1/ext/config.status +671 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
- data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_internal.h +0 -1
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
- data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
- data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
- data/ext/libarchive-3.6.2/Makefile.in +16892 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
- data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
- data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
- data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
- data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
- data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
- data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
- data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
- data/ext/libarchive-3.6.2/config.h.in +1504 -0
- data/ext/libarchive-3.6.2/configure +25558 -0
- data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
- data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
- data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
- data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
- data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
- data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
- data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
- data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
- data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_all.c → libarchive-3.6.2/libarchive/archive_read_support_filter_all.c} +35 -10
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c → libarchive-3.6.2/libarchive/archive_read_support_filter_bzip2.c} +38 -26
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c → libarchive-3.6.2/libarchive/archive_read_support_filter_compress.c} +52 -44
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c → libarchive-3.6.2/libarchive/archive_read_support_filter_gzip.c} +108 -37
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_none.c → libarchive-3.6.2/libarchive/archive_read_support_filter_none.c} +15 -3
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_program.c → libarchive-3.6.2/libarchive/archive_read_support_filter_program.c} +114 -77
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c → libarchive-3.6.2/libarchive/archive_read_support_filter_rpm.c} +31 -31
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c → libarchive-3.6.2/libarchive/archive_read_support_filter_uu.c} +141 -85
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c → libarchive-3.6.2/libarchive/archive_read_support_filter_xz.c} +369 -284
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
- data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
- data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
- data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c → libarchive-3.6.2/libarchive/archive_write_add_filter_compress.c} +86 -131
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_format_all.c → libarchive-3.6.2/libarchive/archive_write_add_filter_none.c} +11 -11
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
- data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
- data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
- data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
- data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
- data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
- data/ext/libarchive-static-makefile +144 -80
- data/ext/libarchive-static-wrapper-makefile +1 -1
- data/ext/zlib-1.2.13/Makefile.in +404 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
- data/ext/zlib-1.2.13/configure +922 -0
- data/ext/zlib-1.2.13/crc32.c +1125 -0
- data/ext/zlib-1.2.13/crc32.h +9446 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
- data/ext/zlib-1.2.13/gzread.c +650 -0
- data/ext/zlib-1.2.13/gzwrite.c +677 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
- data/ext/zlib-1.2.13/uncompr.c +93 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
- metadata +244 -137
- data/ext/libarchive-0.1.1/libarchive.c +0 -1762
- data/ext/libarchive-2.8.4/Makefile.in +0 -7076
- data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
- data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
- data/ext/libarchive-2.8.4/config.h.in +0 -772
- data/ext/libarchive-2.8.4/configure +0 -17916
- data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
- data/ext/zlib-1.2.5/Makefile.in +0 -257
- data/ext/zlib-1.2.5/configure +0 -596
- data/ext/zlib-1.2.5/crc32.c +0 -442
- data/ext/zlib-1.2.5/crc32.h +0 -441
- data/ext/zlib-1.2.5/example.c +0 -565
- data/ext/zlib-1.2.5/gzread.c +0 -653
- data/ext/zlib-1.2.5/gzwrite.c +0 -531
- data/ext/zlib-1.2.5/minigzip.c +0 -440
- data/ext/zlib-1.2.5/uncompr.c +0 -59
@@ -0,0 +1,1504 @@
|
|
1
|
+
/* config.h.in. Generated from configure.ac by autoheader. */
|
2
|
+
|
3
|
+
/* Darwin ACL support */
|
4
|
+
#undef ARCHIVE_ACL_DARWIN
|
5
|
+
|
6
|
+
/* FreeBSD ACL support */
|
7
|
+
#undef ARCHIVE_ACL_FREEBSD
|
8
|
+
|
9
|
+
/* FreeBSD NFSv4 ACL support */
|
10
|
+
#undef ARCHIVE_ACL_FREEBSD_NFS4
|
11
|
+
|
12
|
+
/* Linux POSIX.1e ACL support via libacl */
|
13
|
+
#undef ARCHIVE_ACL_LIBACL
|
14
|
+
|
15
|
+
/* Linux NFSv4 ACL support via librichacl */
|
16
|
+
#undef ARCHIVE_ACL_LIBRICHACL
|
17
|
+
|
18
|
+
/* Solaris ACL support */
|
19
|
+
#undef ARCHIVE_ACL_SUNOS
|
20
|
+
|
21
|
+
/* Solaris NFSv4 ACL support */
|
22
|
+
#undef ARCHIVE_ACL_SUNOS_NFS4
|
23
|
+
|
24
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_LIBC supported. */
|
25
|
+
#undef ARCHIVE_CRYPTO_MD5_LIBC
|
26
|
+
|
27
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_LIBMD supported. */
|
28
|
+
#undef ARCHIVE_CRYPTO_MD5_LIBMD
|
29
|
+
|
30
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_LIBSYSTEM supported. */
|
31
|
+
#undef ARCHIVE_CRYPTO_MD5_LIBSYSTEM
|
32
|
+
|
33
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_MBEDTLS supported. */
|
34
|
+
#undef ARCHIVE_CRYPTO_MD5_MBEDTLS
|
35
|
+
|
36
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_NETTLE supported. */
|
37
|
+
#undef ARCHIVE_CRYPTO_MD5_NETTLE
|
38
|
+
|
39
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_OPENSSL supported. */
|
40
|
+
#undef ARCHIVE_CRYPTO_MD5_OPENSSL
|
41
|
+
|
42
|
+
/* MD5 via ARCHIVE_CRYPTO_MD5_WIN supported. */
|
43
|
+
#undef ARCHIVE_CRYPTO_MD5_WIN
|
44
|
+
|
45
|
+
/* RMD160 via ARCHIVE_CRYPTO_RMD160_LIBC supported. */
|
46
|
+
#undef ARCHIVE_CRYPTO_RMD160_LIBC
|
47
|
+
|
48
|
+
/* RMD160 via ARCHIVE_CRYPTO_RMD160_LIBMD supported. */
|
49
|
+
#undef ARCHIVE_CRYPTO_RMD160_LIBMD
|
50
|
+
|
51
|
+
/* RMD160 via ARCHIVE_CRYPTO_RMD160_MBEDTLS supported. */
|
52
|
+
#undef ARCHIVE_CRYPTO_RMD160_MBEDTLS
|
53
|
+
|
54
|
+
/* RMD160 via ARCHIVE_CRYPTO_RMD160_NETTLE supported. */
|
55
|
+
#undef ARCHIVE_CRYPTO_RMD160_NETTLE
|
56
|
+
|
57
|
+
/* RMD160 via ARCHIVE_CRYPTO_RMD160_OPENSSL supported. */
|
58
|
+
#undef ARCHIVE_CRYPTO_RMD160_OPENSSL
|
59
|
+
|
60
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_LIBC supported. */
|
61
|
+
#undef ARCHIVE_CRYPTO_SHA1_LIBC
|
62
|
+
|
63
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_LIBMD supported. */
|
64
|
+
#undef ARCHIVE_CRYPTO_SHA1_LIBMD
|
65
|
+
|
66
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_LIBSYSTEM supported. */
|
67
|
+
#undef ARCHIVE_CRYPTO_SHA1_LIBSYSTEM
|
68
|
+
|
69
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_MBEDTLS supported. */
|
70
|
+
#undef ARCHIVE_CRYPTO_SHA1_MBEDTLS
|
71
|
+
|
72
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_NETTLE supported. */
|
73
|
+
#undef ARCHIVE_CRYPTO_SHA1_NETTLE
|
74
|
+
|
75
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_OPENSSL supported. */
|
76
|
+
#undef ARCHIVE_CRYPTO_SHA1_OPENSSL
|
77
|
+
|
78
|
+
/* SHA1 via ARCHIVE_CRYPTO_SHA1_WIN supported. */
|
79
|
+
#undef ARCHIVE_CRYPTO_SHA1_WIN
|
80
|
+
|
81
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC supported. */
|
82
|
+
#undef ARCHIVE_CRYPTO_SHA256_LIBC
|
83
|
+
|
84
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC2 supported. */
|
85
|
+
#undef ARCHIVE_CRYPTO_SHA256_LIBC2
|
86
|
+
|
87
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBC3 supported. */
|
88
|
+
#undef ARCHIVE_CRYPTO_SHA256_LIBC3
|
89
|
+
|
90
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBMD supported. */
|
91
|
+
#undef ARCHIVE_CRYPTO_SHA256_LIBMD
|
92
|
+
|
93
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_LIBSYSTEM supported. */
|
94
|
+
#undef ARCHIVE_CRYPTO_SHA256_LIBSYSTEM
|
95
|
+
|
96
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_MBEDTLS supported. */
|
97
|
+
#undef ARCHIVE_CRYPTO_SHA256_MBEDTLS
|
98
|
+
|
99
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_NETTLE supported. */
|
100
|
+
#undef ARCHIVE_CRYPTO_SHA256_NETTLE
|
101
|
+
|
102
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_OPENSSL supported. */
|
103
|
+
#undef ARCHIVE_CRYPTO_SHA256_OPENSSL
|
104
|
+
|
105
|
+
/* SHA256 via ARCHIVE_CRYPTO_SHA256_WIN supported. */
|
106
|
+
#undef ARCHIVE_CRYPTO_SHA256_WIN
|
107
|
+
|
108
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC supported. */
|
109
|
+
#undef ARCHIVE_CRYPTO_SHA384_LIBC
|
110
|
+
|
111
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC2 supported. */
|
112
|
+
#undef ARCHIVE_CRYPTO_SHA384_LIBC2
|
113
|
+
|
114
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBC3 supported. */
|
115
|
+
#undef ARCHIVE_CRYPTO_SHA384_LIBC3
|
116
|
+
|
117
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_LIBSYSTEM supported. */
|
118
|
+
#undef ARCHIVE_CRYPTO_SHA384_LIBSYSTEM
|
119
|
+
|
120
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_MBEDTLS supported. */
|
121
|
+
#undef ARCHIVE_CRYPTO_SHA384_MBEDTLS
|
122
|
+
|
123
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_NETTLE supported. */
|
124
|
+
#undef ARCHIVE_CRYPTO_SHA384_NETTLE
|
125
|
+
|
126
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_OPENSSL supported. */
|
127
|
+
#undef ARCHIVE_CRYPTO_SHA384_OPENSSL
|
128
|
+
|
129
|
+
/* SHA384 via ARCHIVE_CRYPTO_SHA384_WIN supported. */
|
130
|
+
#undef ARCHIVE_CRYPTO_SHA384_WIN
|
131
|
+
|
132
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC supported. */
|
133
|
+
#undef ARCHIVE_CRYPTO_SHA512_LIBC
|
134
|
+
|
135
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC2 supported. */
|
136
|
+
#undef ARCHIVE_CRYPTO_SHA512_LIBC2
|
137
|
+
|
138
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBC3 supported. */
|
139
|
+
#undef ARCHIVE_CRYPTO_SHA512_LIBC3
|
140
|
+
|
141
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBMD supported. */
|
142
|
+
#undef ARCHIVE_CRYPTO_SHA512_LIBMD
|
143
|
+
|
144
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_LIBSYSTEM supported. */
|
145
|
+
#undef ARCHIVE_CRYPTO_SHA512_LIBSYSTEM
|
146
|
+
|
147
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_MBEDTLS supported. */
|
148
|
+
#undef ARCHIVE_CRYPTO_SHA512_MBEDTLS
|
149
|
+
|
150
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_NETTLE supported. */
|
151
|
+
#undef ARCHIVE_CRYPTO_SHA512_NETTLE
|
152
|
+
|
153
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_OPENSSL supported. */
|
154
|
+
#undef ARCHIVE_CRYPTO_SHA512_OPENSSL
|
155
|
+
|
156
|
+
/* SHA512 via ARCHIVE_CRYPTO_SHA512_WIN supported. */
|
157
|
+
#undef ARCHIVE_CRYPTO_SHA512_WIN
|
158
|
+
|
159
|
+
/* AIX xattr support */
|
160
|
+
#undef ARCHIVE_XATTR_AIX
|
161
|
+
|
162
|
+
/* Darwin xattr support */
|
163
|
+
#undef ARCHIVE_XATTR_DARWIN
|
164
|
+
|
165
|
+
/* FreeBSD xattr support */
|
166
|
+
#undef ARCHIVE_XATTR_FREEBSD
|
167
|
+
|
168
|
+
/* Linux xattr support */
|
169
|
+
#undef ARCHIVE_XATTR_LINUX
|
170
|
+
|
171
|
+
/* Version number of bsdcat */
|
172
|
+
#undef BSDCAT_VERSION_STRING
|
173
|
+
|
174
|
+
/* Version number of bsdcpio */
|
175
|
+
#undef BSDCPIO_VERSION_STRING
|
176
|
+
|
177
|
+
/* Version number of bsdtar */
|
178
|
+
#undef BSDTAR_VERSION_STRING
|
179
|
+
|
180
|
+
/* Define to 1 if the system has the type `ace_t'. */
|
181
|
+
#undef HAVE_ACE_T
|
182
|
+
|
183
|
+
/* Define to 1 if you have the `acl' function. */
|
184
|
+
#undef HAVE_ACL
|
185
|
+
|
186
|
+
/* Define to 1 if the system has the type `aclent_t'. */
|
187
|
+
#undef HAVE_ACLENT_T
|
188
|
+
|
189
|
+
/* Define to 1 if you have the `acl_add_flag_np' function. */
|
190
|
+
#undef HAVE_ACL_ADD_FLAG_NP
|
191
|
+
|
192
|
+
/* Define to 1 if you have the `acl_add_perm' function. */
|
193
|
+
#undef HAVE_ACL_ADD_PERM
|
194
|
+
|
195
|
+
/* Define to 1 if you have the `acl_clear_flags_np' function. */
|
196
|
+
#undef HAVE_ACL_CLEAR_FLAGS_NP
|
197
|
+
|
198
|
+
/* Define to 1 if you have the `acl_clear_perms' function. */
|
199
|
+
#undef HAVE_ACL_CLEAR_PERMS
|
200
|
+
|
201
|
+
/* Define to 1 if you have the `acl_create_entry' function. */
|
202
|
+
#undef HAVE_ACL_CREATE_ENTRY
|
203
|
+
|
204
|
+
/* Define to 1 if you have the `acl_delete_def_file' function. */
|
205
|
+
#undef HAVE_ACL_DELETE_DEF_FILE
|
206
|
+
|
207
|
+
/* Define to 1 if the system has the type `acl_entry_t'. */
|
208
|
+
#undef HAVE_ACL_ENTRY_T
|
209
|
+
|
210
|
+
/* Define to 1 if you have the `acl_free' function. */
|
211
|
+
#undef HAVE_ACL_FREE
|
212
|
+
|
213
|
+
/* Define to 1 if you have the `acl_get_brand_np' function. */
|
214
|
+
#undef HAVE_ACL_GET_BRAND_NP
|
215
|
+
|
216
|
+
/* Define to 1 if you have the `acl_get_entry' function. */
|
217
|
+
#undef HAVE_ACL_GET_ENTRY
|
218
|
+
|
219
|
+
/* Define to 1 if you have the `acl_get_entry_type_np' function. */
|
220
|
+
#undef HAVE_ACL_GET_ENTRY_TYPE_NP
|
221
|
+
|
222
|
+
/* Define to 1 if you have the `acl_get_fd' function. */
|
223
|
+
#undef HAVE_ACL_GET_FD
|
224
|
+
|
225
|
+
/* Define to 1 if you have the `acl_get_fd_np' function. */
|
226
|
+
#undef HAVE_ACL_GET_FD_NP
|
227
|
+
|
228
|
+
/* Define to 1 if you have the `acl_get_file' function. */
|
229
|
+
#undef HAVE_ACL_GET_FILE
|
230
|
+
|
231
|
+
/* Define to 1 if you have the `acl_get_flagset_np' function. */
|
232
|
+
#undef HAVE_ACL_GET_FLAGSET_NP
|
233
|
+
|
234
|
+
/* Define to 1 if you have the `acl_get_flag_np' function. */
|
235
|
+
#undef HAVE_ACL_GET_FLAG_NP
|
236
|
+
|
237
|
+
/* Define to 1 if you have the `acl_get_link_np' function. */
|
238
|
+
#undef HAVE_ACL_GET_LINK_NP
|
239
|
+
|
240
|
+
/* Define to 1 if you have the `acl_get_perm' function. */
|
241
|
+
#undef HAVE_ACL_GET_PERM
|
242
|
+
|
243
|
+
/* Define to 1 if you have the `acl_get_permset' function. */
|
244
|
+
#undef HAVE_ACL_GET_PERMSET
|
245
|
+
|
246
|
+
/* Define to 1 if you have the `acl_get_perm_np' function. */
|
247
|
+
#undef HAVE_ACL_GET_PERM_NP
|
248
|
+
|
249
|
+
/* Define to 1 if you have the `acl_get_qualifier' function. */
|
250
|
+
#undef HAVE_ACL_GET_QUALIFIER
|
251
|
+
|
252
|
+
/* Define to 1 if you have the `acl_get_tag_type' function. */
|
253
|
+
#undef HAVE_ACL_GET_TAG_TYPE
|
254
|
+
|
255
|
+
/* Define to 1 if you have the `acl_init' function. */
|
256
|
+
#undef HAVE_ACL_INIT
|
257
|
+
|
258
|
+
/* Define to 1 if you have the `acl_is_trivial_np' function. */
|
259
|
+
#undef HAVE_ACL_IS_TRIVIAL_NP
|
260
|
+
|
261
|
+
/* Define to 1 if you have the <acl/libacl.h> header file. */
|
262
|
+
#undef HAVE_ACL_LIBACL_H
|
263
|
+
|
264
|
+
/* Define to 1 if the system has the type `acl_permset_t'. */
|
265
|
+
#undef HAVE_ACL_PERMSET_T
|
266
|
+
|
267
|
+
/* Define to 1 if you have the `acl_set_entry_type_np' function. */
|
268
|
+
#undef HAVE_ACL_SET_ENTRY_TYPE_NP
|
269
|
+
|
270
|
+
/* Define to 1 if you have the `acl_set_fd' function. */
|
271
|
+
#undef HAVE_ACL_SET_FD
|
272
|
+
|
273
|
+
/* Define to 1 if you have the `acl_set_fd_np' function. */
|
274
|
+
#undef HAVE_ACL_SET_FD_NP
|
275
|
+
|
276
|
+
/* Define to 1 if you have the `acl_set_file' function. */
|
277
|
+
#undef HAVE_ACL_SET_FILE
|
278
|
+
|
279
|
+
/* Define to 1 if you have the `acl_set_link_np' function. */
|
280
|
+
#undef HAVE_ACL_SET_LINK_NP
|
281
|
+
|
282
|
+
/* Define to 1 if you have the `acl_set_qualifier' function. */
|
283
|
+
#undef HAVE_ACL_SET_QUALIFIER
|
284
|
+
|
285
|
+
/* Define to 1 if you have the `acl_set_tag_type' function. */
|
286
|
+
#undef HAVE_ACL_SET_TAG_TYPE
|
287
|
+
|
288
|
+
/* Define to 1 if the system has the type `acl_t'. */
|
289
|
+
#undef HAVE_ACL_T
|
290
|
+
|
291
|
+
/* Define to 1 if the system has the type `acl_tag_t'. */
|
292
|
+
#undef HAVE_ACL_TAG_T
|
293
|
+
|
294
|
+
/* Define to 1 if you have the `arc4random_buf' function. */
|
295
|
+
#undef HAVE_ARC4RANDOM_BUF
|
296
|
+
|
297
|
+
/* Define to 1 if you have the <attr/xattr.h> header file. */
|
298
|
+
#undef HAVE_ATTR_XATTR_H
|
299
|
+
|
300
|
+
/* Define to 1 if you have the <bcrypt.h> header file. */
|
301
|
+
#undef HAVE_BCRYPT_H
|
302
|
+
|
303
|
+
/* Define to 1 if you have the <blake2.h> header file. */
|
304
|
+
#undef HAVE_BLAKE2_H
|
305
|
+
|
306
|
+
/* Define to 1 if you have the <bzlib.h> header file. */
|
307
|
+
#undef HAVE_BZLIB_H
|
308
|
+
|
309
|
+
/* Define to 1 if you have the `chflags' function. */
|
310
|
+
#undef HAVE_CHFLAGS
|
311
|
+
|
312
|
+
/* Define to 1 if you have the `chown' function. */
|
313
|
+
#undef HAVE_CHOWN
|
314
|
+
|
315
|
+
/* Define to 1 if you have the `chroot' function. */
|
316
|
+
#undef HAVE_CHROOT
|
317
|
+
|
318
|
+
/* Define to 1 if you have the <copyfile.h> header file. */
|
319
|
+
#undef HAVE_COPYFILE_H
|
320
|
+
|
321
|
+
/* Define to 1 if you have the `ctime_r' function. */
|
322
|
+
#undef HAVE_CTIME_R
|
323
|
+
|
324
|
+
/* Define to 1 if you have the <ctype.h> header file. */
|
325
|
+
#undef HAVE_CTYPE_H
|
326
|
+
|
327
|
+
/* Define to 1 if you have the `cygwin_conv_path' function. */
|
328
|
+
#undef HAVE_CYGWIN_CONV_PATH
|
329
|
+
|
330
|
+
/* Define to 1 if you have the declaration of `ACE_GETACL', and to 0 if you
|
331
|
+
don't. */
|
332
|
+
#undef HAVE_DECL_ACE_GETACL
|
333
|
+
|
334
|
+
/* Define to 1 if you have the declaration of `ACE_GETACLCNT', and to 0 if you
|
335
|
+
don't. */
|
336
|
+
#undef HAVE_DECL_ACE_GETACLCNT
|
337
|
+
|
338
|
+
/* Define to 1 if you have the declaration of `ACE_SETACL', and to 0 if you
|
339
|
+
don't. */
|
340
|
+
#undef HAVE_DECL_ACE_SETACL
|
341
|
+
|
342
|
+
/* Define to 1 if you have the declaration of `ACL_SYNCHRONIZE', and to 0 if
|
343
|
+
you don't. */
|
344
|
+
#undef HAVE_DECL_ACL_SYNCHRONIZE
|
345
|
+
|
346
|
+
/* Define to 1 if you have the declaration of `ACL_TYPE_EXTENDED', and to 0 if
|
347
|
+
you don't. */
|
348
|
+
#undef HAVE_DECL_ACL_TYPE_EXTENDED
|
349
|
+
|
350
|
+
/* Define to 1 if you have the declaration of `ACL_TYPE_NFS4', and to 0 if you
|
351
|
+
don't. */
|
352
|
+
#undef HAVE_DECL_ACL_TYPE_NFS4
|
353
|
+
|
354
|
+
/* Define to 1 if you have the declaration of `ACL_USER', and to 0 if you
|
355
|
+
don't. */
|
356
|
+
#undef HAVE_DECL_ACL_USER
|
357
|
+
|
358
|
+
/* Define to 1 if you have the declaration of `EXTATTR_NAMESPACE_USER', and to
|
359
|
+
0 if you don't. */
|
360
|
+
#undef HAVE_DECL_EXTATTR_NAMESPACE_USER
|
361
|
+
|
362
|
+
/* Define to 1 if you have the declaration of `GETACL', and to 0 if you don't.
|
363
|
+
*/
|
364
|
+
#undef HAVE_DECL_GETACL
|
365
|
+
|
366
|
+
/* Define to 1 if you have the declaration of `GETACLCNT', and to 0 if you
|
367
|
+
don't. */
|
368
|
+
#undef HAVE_DECL_GETACLCNT
|
369
|
+
|
370
|
+
/* Define to 1 if you have the declaration of `INT32_MAX', and to 0 if you
|
371
|
+
don't. */
|
372
|
+
#undef HAVE_DECL_INT32_MAX
|
373
|
+
|
374
|
+
/* Define to 1 if you have the declaration of `INT32_MIN', and to 0 if you
|
375
|
+
don't. */
|
376
|
+
#undef HAVE_DECL_INT32_MIN
|
377
|
+
|
378
|
+
/* Define to 1 if you have the declaration of `INT64_MAX', and to 0 if you
|
379
|
+
don't. */
|
380
|
+
#undef HAVE_DECL_INT64_MAX
|
381
|
+
|
382
|
+
/* Define to 1 if you have the declaration of `INT64_MIN', and to 0 if you
|
383
|
+
don't. */
|
384
|
+
#undef HAVE_DECL_INT64_MIN
|
385
|
+
|
386
|
+
/* Define to 1 if you have the declaration of `INTMAX_MAX', and to 0 if you
|
387
|
+
don't. */
|
388
|
+
#undef HAVE_DECL_INTMAX_MAX
|
389
|
+
|
390
|
+
/* Define to 1 if you have the declaration of `INTMAX_MIN', and to 0 if you
|
391
|
+
don't. */
|
392
|
+
#undef HAVE_DECL_INTMAX_MIN
|
393
|
+
|
394
|
+
/* Define to 1 if you have the declaration of `SETACL', and to 0 if you don't.
|
395
|
+
*/
|
396
|
+
#undef HAVE_DECL_SETACL
|
397
|
+
|
398
|
+
/* Define to 1 if you have the declaration of `SIZE_MAX', and to 0 if you
|
399
|
+
don't. */
|
400
|
+
#undef HAVE_DECL_SIZE_MAX
|
401
|
+
|
402
|
+
/* Define to 1 if you have the declaration of `SSIZE_MAX', and to 0 if you
|
403
|
+
don't. */
|
404
|
+
#undef HAVE_DECL_SSIZE_MAX
|
405
|
+
|
406
|
+
/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
|
407
|
+
don't. */
|
408
|
+
#undef HAVE_DECL_STRERROR_R
|
409
|
+
|
410
|
+
/* Define to 1 if you have the declaration of `UINT32_MAX', and to 0 if you
|
411
|
+
don't. */
|
412
|
+
#undef HAVE_DECL_UINT32_MAX
|
413
|
+
|
414
|
+
/* Define to 1 if you have the declaration of `UINT64_MAX', and to 0 if you
|
415
|
+
don't. */
|
416
|
+
#undef HAVE_DECL_UINT64_MAX
|
417
|
+
|
418
|
+
/* Define to 1 if you have the declaration of `UINTMAX_MAX', and to 0 if you
|
419
|
+
don't. */
|
420
|
+
#undef HAVE_DECL_UINTMAX_MAX
|
421
|
+
|
422
|
+
/* Define to 1 if you have the declaration of `XATTR_NOFOLLOW', and to 0 if
|
423
|
+
you don't. */
|
424
|
+
#undef HAVE_DECL_XATTR_NOFOLLOW
|
425
|
+
|
426
|
+
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
427
|
+
*/
|
428
|
+
#undef HAVE_DIRENT_H
|
429
|
+
|
430
|
+
/* Define to 1 if you have a dirfd function or macro */
|
431
|
+
#undef HAVE_DIRFD
|
432
|
+
|
433
|
+
/* Define to 1 if you have the <dlfcn.h> header file. */
|
434
|
+
#undef HAVE_DLFCN_H
|
435
|
+
|
436
|
+
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
|
437
|
+
#undef HAVE_DOPRNT
|
438
|
+
|
439
|
+
/* Define to 1 if nl_langinfo supports D_MD_ORDER */
|
440
|
+
#undef HAVE_D_MD_ORDER
|
441
|
+
|
442
|
+
/* A possible errno value for invalid file format errors */
|
443
|
+
#undef HAVE_EFTYPE
|
444
|
+
|
445
|
+
/* A possible errno value for invalid file format errors */
|
446
|
+
#undef HAVE_EILSEQ
|
447
|
+
|
448
|
+
/* Define to 1 if you have the <errno.h> header file. */
|
449
|
+
#undef HAVE_ERRNO_H
|
450
|
+
|
451
|
+
/* Define to 1 if you have the <expat.h> header file. */
|
452
|
+
#undef HAVE_EXPAT_H
|
453
|
+
|
454
|
+
/* Define to 1 if you have the <ext2fs/ext2_fs.h> header file. */
|
455
|
+
#undef HAVE_EXT2FS_EXT2_FS_H
|
456
|
+
|
457
|
+
/* Define to 1 if you have the `extattr_get_fd' function. */
|
458
|
+
#undef HAVE_EXTATTR_GET_FD
|
459
|
+
|
460
|
+
/* Define to 1 if you have the `extattr_get_file' function. */
|
461
|
+
#undef HAVE_EXTATTR_GET_FILE
|
462
|
+
|
463
|
+
/* Define to 1 if you have the `extattr_get_link' function. */
|
464
|
+
#undef HAVE_EXTATTR_GET_LINK
|
465
|
+
|
466
|
+
/* Define to 1 if you have the `extattr_list_fd' function. */
|
467
|
+
#undef HAVE_EXTATTR_LIST_FD
|
468
|
+
|
469
|
+
/* Define to 1 if you have the `extattr_list_file' function. */
|
470
|
+
#undef HAVE_EXTATTR_LIST_FILE
|
471
|
+
|
472
|
+
/* Define to 1 if you have the `extattr_list_link' function. */
|
473
|
+
#undef HAVE_EXTATTR_LIST_LINK
|
474
|
+
|
475
|
+
/* Define to 1 if you have the `extattr_set_fd' function. */
|
476
|
+
#undef HAVE_EXTATTR_SET_FD
|
477
|
+
|
478
|
+
/* Define to 1 if you have the `extattr_set_link' function. */
|
479
|
+
#undef HAVE_EXTATTR_SET_LINK
|
480
|
+
|
481
|
+
/* Define to 1 if you have the `facl' function. */
|
482
|
+
#undef HAVE_FACL
|
483
|
+
|
484
|
+
/* Define to 1 if you have the `fchdir' function. */
|
485
|
+
#undef HAVE_FCHDIR
|
486
|
+
|
487
|
+
/* Define to 1 if you have the `fchflags' function. */
|
488
|
+
#undef HAVE_FCHFLAGS
|
489
|
+
|
490
|
+
/* Define to 1 if you have the `fchmod' function. */
|
491
|
+
#undef HAVE_FCHMOD
|
492
|
+
|
493
|
+
/* Define to 1 if you have the `fchown' function. */
|
494
|
+
#undef HAVE_FCHOWN
|
495
|
+
|
496
|
+
/* Define to 1 if you have the `fcntl' function. */
|
497
|
+
#undef HAVE_FCNTL
|
498
|
+
|
499
|
+
/* Define to 1 if you have the <fcntl.h> header file. */
|
500
|
+
#undef HAVE_FCNTL_H
|
501
|
+
|
502
|
+
/* Define to 1 if you have the `fdopendir' function. */
|
503
|
+
#undef HAVE_FDOPENDIR
|
504
|
+
|
505
|
+
/* Define to 1 if you have the `fgetea' function. */
|
506
|
+
#undef HAVE_FGETEA
|
507
|
+
|
508
|
+
/* Define to 1 if you have the `fgetxattr' function. */
|
509
|
+
#undef HAVE_FGETXATTR
|
510
|
+
|
511
|
+
/* Define to 1 if you have the `flistea' function. */
|
512
|
+
#undef HAVE_FLISTEA
|
513
|
+
|
514
|
+
/* Define to 1 if you have the `flistxattr' function. */
|
515
|
+
#undef HAVE_FLISTXATTR
|
516
|
+
|
517
|
+
/* Define to 1 if you have the `fork' function. */
|
518
|
+
#undef HAVE_FORK
|
519
|
+
|
520
|
+
/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
|
521
|
+
#undef HAVE_FSEEKO
|
522
|
+
|
523
|
+
/* Define to 1 if you have the `fsetea' function. */
|
524
|
+
#undef HAVE_FSETEA
|
525
|
+
|
526
|
+
/* Define to 1 if you have the `fsetxattr' function. */
|
527
|
+
#undef HAVE_FSETXATTR
|
528
|
+
|
529
|
+
/* Define to 1 if you have the `fstat' function. */
|
530
|
+
#undef HAVE_FSTAT
|
531
|
+
|
532
|
+
/* Define to 1 if you have the `fstatat' function. */
|
533
|
+
#undef HAVE_FSTATAT
|
534
|
+
|
535
|
+
/* Define to 1 if you have the `fstatfs' function. */
|
536
|
+
#undef HAVE_FSTATFS
|
537
|
+
|
538
|
+
/* Define to 1 if you have the `fstatvfs' function. */
|
539
|
+
#undef HAVE_FSTATVFS
|
540
|
+
|
541
|
+
/* Define to 1 if you have the `ftruncate' function. */
|
542
|
+
#undef HAVE_FTRUNCATE
|
543
|
+
|
544
|
+
/* Define to 1 if you have the `futimens' function. */
|
545
|
+
#undef HAVE_FUTIMENS
|
546
|
+
|
547
|
+
/* Define to 1 if you have the `futimes' function. */
|
548
|
+
#undef HAVE_FUTIMES
|
549
|
+
|
550
|
+
/* Define to 1 if you have the `futimesat' function. */
|
551
|
+
#undef HAVE_FUTIMESAT
|
552
|
+
|
553
|
+
/* Define to 1 if you have the `getea' function. */
|
554
|
+
#undef HAVE_GETEA
|
555
|
+
|
556
|
+
/* Define to 1 if you have the `geteuid' function. */
|
557
|
+
#undef HAVE_GETEUID
|
558
|
+
|
559
|
+
/* Define to 1 if you have the `getgrgid_r' function. */
|
560
|
+
#undef HAVE_GETGRGID_R
|
561
|
+
|
562
|
+
/* Define to 1 if you have the `getgrnam_r' function. */
|
563
|
+
#undef HAVE_GETGRNAM_R
|
564
|
+
|
565
|
+
/* Define to 1 if you have the `getpid' function. */
|
566
|
+
#undef HAVE_GETPID
|
567
|
+
|
568
|
+
/* Define to 1 if you have the `getpwnam_r' function. */
|
569
|
+
#undef HAVE_GETPWNAM_R
|
570
|
+
|
571
|
+
/* Define to 1 if you have the `getpwuid_r' function. */
|
572
|
+
#undef HAVE_GETPWUID_R
|
573
|
+
|
574
|
+
/* Define to 1 if you have the `getvfsbyname' function. */
|
575
|
+
#undef HAVE_GETVFSBYNAME
|
576
|
+
|
577
|
+
/* Define to 1 if you have the `getxattr' function. */
|
578
|
+
#undef HAVE_GETXATTR
|
579
|
+
|
580
|
+
/* Define to 1 if you have the `gmtime_r' function. */
|
581
|
+
#undef HAVE_GMTIME_R
|
582
|
+
|
583
|
+
/* Define to 1 if you have the <grp.h> header file. */
|
584
|
+
#undef HAVE_GRP_H
|
585
|
+
|
586
|
+
/* Define if you have the iconv() function and it works. */
|
587
|
+
#undef HAVE_ICONV
|
588
|
+
|
589
|
+
/* Define to 1 if you have the <iconv.h> header file. */
|
590
|
+
#undef HAVE_ICONV_H
|
591
|
+
|
592
|
+
/* Define to 1 if the system has the type `intmax_t'. */
|
593
|
+
#undef HAVE_INTMAX_T
|
594
|
+
|
595
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
596
|
+
#undef HAVE_INTTYPES_H
|
597
|
+
|
598
|
+
/* Define to 1 if you have the <io.h> header file. */
|
599
|
+
#undef HAVE_IO_H
|
600
|
+
|
601
|
+
/* Define to 1 if you have the <langinfo.h> header file. */
|
602
|
+
#undef HAVE_LANGINFO_H
|
603
|
+
|
604
|
+
/* Define to 1 if you have the `lchflags' function. */
|
605
|
+
#undef HAVE_LCHFLAGS
|
606
|
+
|
607
|
+
/* Define to 1 if you have the `lchmod' function. */
|
608
|
+
#undef HAVE_LCHMOD
|
609
|
+
|
610
|
+
/* Define to 1 if you have the `lchown' function. */
|
611
|
+
#undef HAVE_LCHOWN
|
612
|
+
|
613
|
+
/* Define to 1 if you have the `lgetea' function. */
|
614
|
+
#undef HAVE_LGETEA
|
615
|
+
|
616
|
+
/* Define to 1 if you have the `lgetxattr' function. */
|
617
|
+
#undef HAVE_LGETXATTR
|
618
|
+
|
619
|
+
/* Define to 1 if you have the `acl' library (-lacl). */
|
620
|
+
#undef HAVE_LIBACL
|
621
|
+
|
622
|
+
/* Define to 1 if you have the `b2' library (-lb2). */
|
623
|
+
#undef HAVE_LIBB2
|
624
|
+
|
625
|
+
/* Define to 1 if you have the `bz2' library (-lbz2). */
|
626
|
+
#undef HAVE_LIBBZ2
|
627
|
+
|
628
|
+
/* Define to 1 if you have the `charset' library (-lcharset). */
|
629
|
+
#undef HAVE_LIBCHARSET
|
630
|
+
|
631
|
+
/* Define to 1 if you have the `crypto' library (-lcrypto). */
|
632
|
+
#undef HAVE_LIBCRYPTO
|
633
|
+
|
634
|
+
/* Define to 1 if you have the `expat' library (-lexpat). */
|
635
|
+
#undef HAVE_LIBEXPAT
|
636
|
+
|
637
|
+
/* Define to 1 if you have the `lz4' library (-llz4). */
|
638
|
+
#undef HAVE_LIBLZ4
|
639
|
+
|
640
|
+
/* Define to 1 if you have the `lzma' library (-llzma). */
|
641
|
+
#undef HAVE_LIBLZMA
|
642
|
+
|
643
|
+
/* Define to 1 if you have the `lzo2' library (-llzo2). */
|
644
|
+
#undef HAVE_LIBLZO2
|
645
|
+
|
646
|
+
/* Define to 1 if you have the `mbedcrypto' library (-lmbedcrypto). */
|
647
|
+
#undef HAVE_LIBMBEDCRYPTO
|
648
|
+
|
649
|
+
/* Define to 1 if you have the `md' library (-lmd). */
|
650
|
+
#undef HAVE_LIBMD
|
651
|
+
|
652
|
+
/* Define to 1 if you have the `nettle' library (-lnettle). */
|
653
|
+
#undef HAVE_LIBNETTLE
|
654
|
+
|
655
|
+
/* Define to 1 if you have the `pcre' library (-lpcre). */
|
656
|
+
#undef HAVE_LIBPCRE
|
657
|
+
|
658
|
+
/* Define to 1 if you have the `pcreposix' library (-lpcreposix). */
|
659
|
+
#undef HAVE_LIBPCREPOSIX
|
660
|
+
|
661
|
+
/* Define to 1 if you have the `regex' library (-lregex). */
|
662
|
+
#undef HAVE_LIBREGEX
|
663
|
+
|
664
|
+
/* Define to 1 if you have the `richacl' library (-lrichacl). */
|
665
|
+
#undef HAVE_LIBRICHACL
|
666
|
+
|
667
|
+
/* Define to 1 if you have the `xml2' library (-lxml2). */
|
668
|
+
#undef HAVE_LIBXML2
|
669
|
+
|
670
|
+
/* Define to 1 if you have the <libxml/xmlreader.h> header file. */
|
671
|
+
#undef HAVE_LIBXML_XMLREADER_H
|
672
|
+
|
673
|
+
/* Define to 1 if you have the <libxml/xmlwriter.h> header file. */
|
674
|
+
#undef HAVE_LIBXML_XMLWRITER_H
|
675
|
+
|
676
|
+
/* Define to 1 if you have the `z' library (-lz). */
|
677
|
+
#undef HAVE_LIBZ
|
678
|
+
|
679
|
+
/* Define to 1 if you have the `zstd' library (-lzstd). */
|
680
|
+
#undef HAVE_LIBZSTD
|
681
|
+
|
682
|
+
/* Define to 1 if you have the `zstd' library (-lzstd) with compression
|
683
|
+
support. */
|
684
|
+
#undef HAVE_LIBZSTD_COMPRESSOR
|
685
|
+
|
686
|
+
/* Define to 1 if you have the <limits.h> header file. */
|
687
|
+
#undef HAVE_LIMITS_H
|
688
|
+
|
689
|
+
/* Define to 1 if you have the `link' function. */
|
690
|
+
#undef HAVE_LINK
|
691
|
+
|
692
|
+
/* Define to 1 if you have the `linkat' function. */
|
693
|
+
#undef HAVE_LINKAT
|
694
|
+
|
695
|
+
/* Define to 1 if you have the <linux/fiemap.h> header file. */
|
696
|
+
#undef HAVE_LINUX_FIEMAP_H
|
697
|
+
|
698
|
+
/* Define to 1 if you have the <linux/fs.h> header file. */
|
699
|
+
#undef HAVE_LINUX_FS_H
|
700
|
+
|
701
|
+
/* Define to 1 if you have the <linux/magic.h> header file. */
|
702
|
+
#undef HAVE_LINUX_MAGIC_H
|
703
|
+
|
704
|
+
/* Define to 1 if you have the <linux/types.h> header file. */
|
705
|
+
#undef HAVE_LINUX_TYPES_H
|
706
|
+
|
707
|
+
/* Define to 1 if you have the `listea' function. */
|
708
|
+
#undef HAVE_LISTEA
|
709
|
+
|
710
|
+
/* Define to 1 if you have the `listxattr' function. */
|
711
|
+
#undef HAVE_LISTXATTR
|
712
|
+
|
713
|
+
/* Define to 1 if you have the `llistea' function. */
|
714
|
+
#undef HAVE_LLISTEA
|
715
|
+
|
716
|
+
/* Define to 1 if you have the `llistxattr' function. */
|
717
|
+
#undef HAVE_LLISTXATTR
|
718
|
+
|
719
|
+
/* Define to 1 if you have the <localcharset.h> header file. */
|
720
|
+
#undef HAVE_LOCALCHARSET_H
|
721
|
+
|
722
|
+
/* Define to 1 if you have the `locale_charset' function. */
|
723
|
+
#undef HAVE_LOCALE_CHARSET
|
724
|
+
|
725
|
+
/* Define to 1 if you have the <locale.h> header file. */
|
726
|
+
#undef HAVE_LOCALE_H
|
727
|
+
|
728
|
+
/* Define to 1 if you have the `localtime_r' function. */
|
729
|
+
#undef HAVE_LOCALTIME_R
|
730
|
+
|
731
|
+
/* Define to 1 if the system has the type `long long int'. */
|
732
|
+
#undef HAVE_LONG_LONG_INT
|
733
|
+
|
734
|
+
/* Define to 1 if you have the `lsetea' function. */
|
735
|
+
#undef HAVE_LSETEA
|
736
|
+
|
737
|
+
/* Define to 1 if you have the `lsetxattr' function. */
|
738
|
+
#undef HAVE_LSETXATTR
|
739
|
+
|
740
|
+
/* Define to 1 if you have the `lstat' function. */
|
741
|
+
#undef HAVE_LSTAT
|
742
|
+
|
743
|
+
/* Define to 1 if `lstat' has the bug that it succeeds when given the
|
744
|
+
zero-length file name argument. */
|
745
|
+
#undef HAVE_LSTAT_EMPTY_STRING_BUG
|
746
|
+
|
747
|
+
/* Define to 1 if you have the `lutimes' function. */
|
748
|
+
#undef HAVE_LUTIMES
|
749
|
+
|
750
|
+
/* Define to 1 if you have the <lz4hc.h> header file. */
|
751
|
+
#undef HAVE_LZ4HC_H
|
752
|
+
|
753
|
+
/* Define to 1 if you have the <lz4.h> header file. */
|
754
|
+
#undef HAVE_LZ4_H
|
755
|
+
|
756
|
+
/* Define to 1 if you have the <lzma.h> header file. */
|
757
|
+
#undef HAVE_LZMA_H
|
758
|
+
|
759
|
+
/* Define to 1 if you have the `lzma_stream_encoder_mt' function. */
|
760
|
+
#undef HAVE_LZMA_STREAM_ENCODER_MT
|
761
|
+
|
762
|
+
/* Define to 1 if you have the <lzo/lzo1x.h> header file. */
|
763
|
+
#undef HAVE_LZO_LZO1X_H
|
764
|
+
|
765
|
+
/* Define to 1 if you have the <lzo/lzoconf.h> header file. */
|
766
|
+
#undef HAVE_LZO_LZOCONF_H
|
767
|
+
|
768
|
+
/* Define to 1 if you have the <mbedtls/aes.h> header file. */
|
769
|
+
#undef HAVE_MBEDTLS_AES_H
|
770
|
+
|
771
|
+
/* Define to 1 if you have the <mbedtls/md.h> header file. */
|
772
|
+
#undef HAVE_MBEDTLS_MD_H
|
773
|
+
|
774
|
+
/* Define to 1 if you have the <mbedtls/pkcs5.h> header file. */
|
775
|
+
#undef HAVE_MBEDTLS_PKCS5_H
|
776
|
+
|
777
|
+
/* Define to 1 if you have the `mbrtowc' function. */
|
778
|
+
#undef HAVE_MBRTOWC
|
779
|
+
|
780
|
+
/* Define to 1 if you have the `mbr_gid_to_uuid' function. */
|
781
|
+
#undef HAVE_MBR_GID_TO_UUID
|
782
|
+
|
783
|
+
/* Define to 1 if you have the `mbr_uid_to_uuid' function. */
|
784
|
+
#undef HAVE_MBR_UID_TO_UUID
|
785
|
+
|
786
|
+
/* Define to 1 if you have the `mbr_uuid_to_id' function. */
|
787
|
+
#undef HAVE_MBR_UUID_TO_ID
|
788
|
+
|
789
|
+
/* Define to 1 if you have the <md5.h> header file. */
|
790
|
+
#undef HAVE_MD5_H
|
791
|
+
|
792
|
+
/* Define to 1 if you have the <membership.h> header file. */
|
793
|
+
#undef HAVE_MEMBERSHIP_H
|
794
|
+
|
795
|
+
/* Define to 1 if you have the `memmove' function. */
|
796
|
+
#undef HAVE_MEMMOVE
|
797
|
+
|
798
|
+
/* Define to 1 if you have the `memset' function. */
|
799
|
+
#undef HAVE_MEMSET
|
800
|
+
|
801
|
+
/* Define to 1 if you have the <minix/config.h> header file. */
|
802
|
+
#undef HAVE_MINIX_CONFIG_H
|
803
|
+
|
804
|
+
/* Define to 1 if you have the `mkdir' function. */
|
805
|
+
#undef HAVE_MKDIR
|
806
|
+
|
807
|
+
/* Define to 1 if you have the `mkfifo' function. */
|
808
|
+
#undef HAVE_MKFIFO
|
809
|
+
|
810
|
+
/* Define to 1 if you have the `mknod' function. */
|
811
|
+
#undef HAVE_MKNOD
|
812
|
+
|
813
|
+
/* Define to 1 if you have the `mkstemp' function. */
|
814
|
+
#undef HAVE_MKSTEMP
|
815
|
+
|
816
|
+
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
817
|
+
#undef HAVE_NDIR_H
|
818
|
+
|
819
|
+
/* Define to 1 if you have the <nettle/aes.h> header file. */
|
820
|
+
#undef HAVE_NETTLE_AES_H
|
821
|
+
|
822
|
+
/* Define to 1 if you have the <nettle/hmac.h> header file. */
|
823
|
+
#undef HAVE_NETTLE_HMAC_H
|
824
|
+
|
825
|
+
/* Define to 1 if you have the <nettle/md5.h> header file. */
|
826
|
+
#undef HAVE_NETTLE_MD5_H
|
827
|
+
|
828
|
+
/* Define to 1 if you have the <nettle/pbkdf2.h> header file. */
|
829
|
+
#undef HAVE_NETTLE_PBKDF2_H
|
830
|
+
|
831
|
+
/* Define to 1 if you have the <nettle/ripemd160.h> header file. */
|
832
|
+
#undef HAVE_NETTLE_RIPEMD160_H
|
833
|
+
|
834
|
+
/* Define to 1 if you have the <nettle/sha.h> header file. */
|
835
|
+
#undef HAVE_NETTLE_SHA_H
|
836
|
+
|
837
|
+
/* Define to 1 if you have the `nl_langinfo' function. */
|
838
|
+
#undef HAVE_NL_LANGINFO
|
839
|
+
|
840
|
+
/* Define to 1 if you have the `openat' function. */
|
841
|
+
#undef HAVE_OPENAT
|
842
|
+
|
843
|
+
/* Define to 1 if you have the <openssl/evp.h> header file. */
|
844
|
+
#undef HAVE_OPENSSL_EVP_H
|
845
|
+
|
846
|
+
/* Define to 1 if you have the <paths.h> header file. */
|
847
|
+
#undef HAVE_PATHS_H
|
848
|
+
|
849
|
+
/* Define to 1 if you have the <pcreposix.h> header file. */
|
850
|
+
#undef HAVE_PCREPOSIX_H
|
851
|
+
|
852
|
+
/* Define to 1 if you have the `pipe' function. */
|
853
|
+
#undef HAVE_PIPE
|
854
|
+
|
855
|
+
/* Define to 1 if you have the `PKCS5_PBKDF2_HMAC_SHA1' function. */
|
856
|
+
#undef HAVE_PKCS5_PBKDF2_HMAC_SHA1
|
857
|
+
|
858
|
+
/* Define to 1 if you have the `poll' function. */
|
859
|
+
#undef HAVE_POLL
|
860
|
+
|
861
|
+
/* Define to 1 if you have the <poll.h> header file. */
|
862
|
+
#undef HAVE_POLL_H
|
863
|
+
|
864
|
+
/* Define to 1 if you have the `posix_spawnp' function. */
|
865
|
+
#undef HAVE_POSIX_SPAWNP
|
866
|
+
|
867
|
+
/* Define to 1 if you have the <pthread.h> header file. */
|
868
|
+
#undef HAVE_PTHREAD_H
|
869
|
+
|
870
|
+
/* Define to 1 if you have the <pwd.h> header file. */
|
871
|
+
#undef HAVE_PWD_H
|
872
|
+
|
873
|
+
/* Define to 1 if you have a POSIX compatible readdir_r */
|
874
|
+
#undef HAVE_READDIR_R
|
875
|
+
|
876
|
+
/* Define to 1 if you have the `readlink' function. */
|
877
|
+
#undef HAVE_READLINK
|
878
|
+
|
879
|
+
/* Define to 1 if you have the `readlinkat' function. */
|
880
|
+
#undef HAVE_READLINKAT
|
881
|
+
|
882
|
+
/* Define to 1 if you have the `readpassphrase' function. */
|
883
|
+
#undef HAVE_READPASSPHRASE
|
884
|
+
|
885
|
+
/* Define to 1 if you have the <readpassphrase.h> header file. */
|
886
|
+
#undef HAVE_READPASSPHRASE_H
|
887
|
+
|
888
|
+
/* Define to 1 if you have the <regex.h> header file. */
|
889
|
+
#undef HAVE_REGEX_H
|
890
|
+
|
891
|
+
/* Define to 1 if you have the `richacl_alloc' function. */
|
892
|
+
#undef HAVE_RICHACL_ALLOC
|
893
|
+
|
894
|
+
/* Define to 1 if you have the `richacl_equiv_mode' function. */
|
895
|
+
#undef HAVE_RICHACL_EQUIV_MODE
|
896
|
+
|
897
|
+
/* Define to 1 if you have the `richacl_free' function. */
|
898
|
+
#undef HAVE_RICHACL_FREE
|
899
|
+
|
900
|
+
/* Define to 1 if you have the `richacl_get_fd' function. */
|
901
|
+
#undef HAVE_RICHACL_GET_FD
|
902
|
+
|
903
|
+
/* Define to 1 if you have the `richacl_get_file' function. */
|
904
|
+
#undef HAVE_RICHACL_GET_FILE
|
905
|
+
|
906
|
+
/* Define to 1 if you have the `richacl_set_fd' function. */
|
907
|
+
#undef HAVE_RICHACL_SET_FD
|
908
|
+
|
909
|
+
/* Define to 1 if you have the `richacl_set_file' function. */
|
910
|
+
#undef HAVE_RICHACL_SET_FILE
|
911
|
+
|
912
|
+
/* Define to 1 if you have the <ripemd.h> header file. */
|
913
|
+
#undef HAVE_RIPEMD_H
|
914
|
+
|
915
|
+
/* Define to 1 if you have the `select' function. */
|
916
|
+
#undef HAVE_SELECT
|
917
|
+
|
918
|
+
/* Define to 1 if you have the `setenv' function. */
|
919
|
+
#undef HAVE_SETENV
|
920
|
+
|
921
|
+
/* Define to 1 if you have the `setlocale' function. */
|
922
|
+
#undef HAVE_SETLOCALE
|
923
|
+
|
924
|
+
/* Define to 1 if you have the `setxattr' function. */
|
925
|
+
#undef HAVE_SETXATTR
|
926
|
+
|
927
|
+
/* Define to 1 if you have the <sha256.h> header file. */
|
928
|
+
#undef HAVE_SHA256_H
|
929
|
+
|
930
|
+
/* Define to 1 if you have the <sha512.h> header file. */
|
931
|
+
#undef HAVE_SHA512_H
|
932
|
+
|
933
|
+
/* Define to 1 if you have the <sha.h> header file. */
|
934
|
+
#undef HAVE_SHA_H
|
935
|
+
|
936
|
+
/* Define to 1 if you have the `sigaction' function. */
|
937
|
+
#undef HAVE_SIGACTION
|
938
|
+
|
939
|
+
/* Define to 1 if you have the <signal.h> header file. */
|
940
|
+
#undef HAVE_SIGNAL_H
|
941
|
+
|
942
|
+
/* Define to 1 if you have the <spawn.h> header file. */
|
943
|
+
#undef HAVE_SPAWN_H
|
944
|
+
|
945
|
+
/* Define to 1 if you have the `statfs' function. */
|
946
|
+
#undef HAVE_STATFS
|
947
|
+
|
948
|
+
/* Define to 1 if you have the `statvfs' function. */
|
949
|
+
#undef HAVE_STATVFS
|
950
|
+
|
951
|
+
/* Define to 1 if `stat' has the bug that it succeeds when given the
|
952
|
+
zero-length file name argument. */
|
953
|
+
#undef HAVE_STAT_EMPTY_STRING_BUG
|
954
|
+
|
955
|
+
/* Define to 1 if you have the <stdarg.h> header file. */
|
956
|
+
#undef HAVE_STDARG_H
|
957
|
+
|
958
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
959
|
+
#undef HAVE_STDINT_H
|
960
|
+
|
961
|
+
/* Define to 1 if you have the <stdio.h> header file. */
|
962
|
+
#undef HAVE_STDIO_H
|
963
|
+
|
964
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
965
|
+
#undef HAVE_STDLIB_H
|
966
|
+
|
967
|
+
/* Define to 1 if you have the `strchr' function. */
|
968
|
+
#undef HAVE_STRCHR
|
969
|
+
|
970
|
+
/* Define to 1 if you have the `strdup' function. */
|
971
|
+
#undef HAVE_STRDUP
|
972
|
+
|
973
|
+
/* Define to 1 if you have the `strerror' function. */
|
974
|
+
#undef HAVE_STRERROR
|
975
|
+
|
976
|
+
/* Define if you have `strerror_r'. */
|
977
|
+
#undef HAVE_STRERROR_R
|
978
|
+
|
979
|
+
/* Define to 1 if you have the `strftime' function. */
|
980
|
+
#undef HAVE_STRFTIME
|
981
|
+
|
982
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
983
|
+
#undef HAVE_STRINGS_H
|
984
|
+
|
985
|
+
/* Define to 1 if you have the <string.h> header file. */
|
986
|
+
#undef HAVE_STRING_H
|
987
|
+
|
988
|
+
/* Define to 1 if you have the `strncpy_s' function. */
|
989
|
+
#undef HAVE_STRNCPY_S
|
990
|
+
|
991
|
+
/* Define to 1 if you have the `strnlen' function. */
|
992
|
+
#undef HAVE_STRNLEN
|
993
|
+
|
994
|
+
/* Define to 1 if you have the `strrchr' function. */
|
995
|
+
#undef HAVE_STRRCHR
|
996
|
+
|
997
|
+
/* Define to 1 if the system has the type `struct richace'. */
|
998
|
+
#undef HAVE_STRUCT_RICHACE
|
999
|
+
|
1000
|
+
/* Define to 1 if the system has the type `struct richacl'. */
|
1001
|
+
#undef HAVE_STRUCT_RICHACL
|
1002
|
+
|
1003
|
+
/* Define to 1 if the system has the type `struct statfs'. */
|
1004
|
+
#undef HAVE_STRUCT_STATFS
|
1005
|
+
|
1006
|
+
/* Define to 1 if `f_iosize' is a member of `struct statfs'. */
|
1007
|
+
#undef HAVE_STRUCT_STATFS_F_IOSIZE
|
1008
|
+
|
1009
|
+
/* Define to 1 if `f_namemax' is a member of `struct statfs'. */
|
1010
|
+
#undef HAVE_STRUCT_STATFS_F_NAMEMAX
|
1011
|
+
|
1012
|
+
/* Define to 1 if `f_iosize' is a member of `struct statvfs'. */
|
1013
|
+
#undef HAVE_STRUCT_STATVFS_F_IOSIZE
|
1014
|
+
|
1015
|
+
/* Define to 1 if `st_birthtime' is a member of `struct stat'. */
|
1016
|
+
#undef HAVE_STRUCT_STAT_ST_BIRTHTIME
|
1017
|
+
|
1018
|
+
/* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
|
1019
|
+
#undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
|
1020
|
+
|
1021
|
+
/* Define to 1 if `st_blksize' is a member of `struct stat'. */
|
1022
|
+
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
|
1023
|
+
|
1024
|
+
/* Define to 1 if `st_flags' is a member of `struct stat'. */
|
1025
|
+
#undef HAVE_STRUCT_STAT_ST_FLAGS
|
1026
|
+
|
1027
|
+
/* Define to 1 if `st_mtimespec.tv_nsec' is a member of `struct stat'. */
|
1028
|
+
#undef HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
|
1029
|
+
|
1030
|
+
/* Define to 1 if `st_mtime_n' is a member of `struct stat'. */
|
1031
|
+
#undef HAVE_STRUCT_STAT_ST_MTIME_N
|
1032
|
+
|
1033
|
+
/* Define to 1 if `st_mtime_usec' is a member of `struct stat'. */
|
1034
|
+
#undef HAVE_STRUCT_STAT_ST_MTIME_USEC
|
1035
|
+
|
1036
|
+
/* Define to 1 if `st_mtim.tv_nsec' is a member of `struct stat'. */
|
1037
|
+
#undef HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
|
1038
|
+
|
1039
|
+
/* Define to 1 if `st_umtime' is a member of `struct stat'. */
|
1040
|
+
#undef HAVE_STRUCT_STAT_ST_UMTIME
|
1041
|
+
|
1042
|
+
/* Define to 1 if `tm_gmtoff' is a member of `struct tm'. */
|
1043
|
+
#undef HAVE_STRUCT_TM_TM_GMTOFF
|
1044
|
+
|
1045
|
+
/* Define to 1 if `__tm_gmtoff' is a member of `struct tm'. */
|
1046
|
+
#undef HAVE_STRUCT_TM___TM_GMTOFF
|
1047
|
+
|
1048
|
+
/* Define to 1 if the system has the type `struct vfsconf'. */
|
1049
|
+
#undef HAVE_STRUCT_VFSCONF
|
1050
|
+
|
1051
|
+
/* Define to 1 if the system has the type `struct xvfsconf'. */
|
1052
|
+
#undef HAVE_STRUCT_XVFSCONF
|
1053
|
+
|
1054
|
+
/* Define to 1 if you have the `symlink' function. */
|
1055
|
+
#undef HAVE_SYMLINK
|
1056
|
+
|
1057
|
+
/* Define to 1 if you have the <sys/acl.h> header file. */
|
1058
|
+
#undef HAVE_SYS_ACL_H
|
1059
|
+
|
1060
|
+
/* Define to 1 if you have the <sys/cdefs.h> header file. */
|
1061
|
+
#undef HAVE_SYS_CDEFS_H
|
1062
|
+
|
1063
|
+
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
1064
|
+
*/
|
1065
|
+
#undef HAVE_SYS_DIR_H
|
1066
|
+
|
1067
|
+
/* Define to 1 if you have the <sys/ea.h> header file. */
|
1068
|
+
#undef HAVE_SYS_EA_H
|
1069
|
+
|
1070
|
+
/* Define to 1 if you have the <sys/extattr.h> header file. */
|
1071
|
+
#undef HAVE_SYS_EXTATTR_H
|
1072
|
+
|
1073
|
+
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
1074
|
+
#undef HAVE_SYS_IOCTL_H
|
1075
|
+
|
1076
|
+
/* Define to 1 if you have the <sys/mkdev.h> header file. */
|
1077
|
+
#undef HAVE_SYS_MKDEV_H
|
1078
|
+
|
1079
|
+
/* Define to 1 if you have the <sys/mount.h> header file. */
|
1080
|
+
#undef HAVE_SYS_MOUNT_H
|
1081
|
+
|
1082
|
+
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
1083
|
+
*/
|
1084
|
+
#undef HAVE_SYS_NDIR_H
|
1085
|
+
|
1086
|
+
/* Define to 1 if you have the <sys/param.h> header file. */
|
1087
|
+
#undef HAVE_SYS_PARAM_H
|
1088
|
+
|
1089
|
+
/* Define to 1 if you have the <sys/poll.h> header file. */
|
1090
|
+
#undef HAVE_SYS_POLL_H
|
1091
|
+
|
1092
|
+
/* Define to 1 if you have the <sys/richacl.h> header file. */
|
1093
|
+
#undef HAVE_SYS_RICHACL_H
|
1094
|
+
|
1095
|
+
/* Define to 1 if you have the <sys/select.h> header file. */
|
1096
|
+
#undef HAVE_SYS_SELECT_H
|
1097
|
+
|
1098
|
+
/* Define to 1 if you have the <sys/statfs.h> header file. */
|
1099
|
+
#undef HAVE_SYS_STATFS_H
|
1100
|
+
|
1101
|
+
/* Define to 1 if you have the <sys/statvfs.h> header file. */
|
1102
|
+
#undef HAVE_SYS_STATVFS_H
|
1103
|
+
|
1104
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
1105
|
+
#undef HAVE_SYS_STAT_H
|
1106
|
+
|
1107
|
+
/* Define to 1 if you have the <sys/sysmacros.h> header file. */
|
1108
|
+
#undef HAVE_SYS_SYSMACROS_H
|
1109
|
+
|
1110
|
+
/* Define to 1 if you have the <sys/time.h> header file. */
|
1111
|
+
#undef HAVE_SYS_TIME_H
|
1112
|
+
|
1113
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
1114
|
+
#undef HAVE_SYS_TYPES_H
|
1115
|
+
|
1116
|
+
/* Define to 1 if you have the <sys/utime.h> header file. */
|
1117
|
+
#undef HAVE_SYS_UTIME_H
|
1118
|
+
|
1119
|
+
/* Define to 1 if you have the <sys/utsname.h> header file. */
|
1120
|
+
#undef HAVE_SYS_UTSNAME_H
|
1121
|
+
|
1122
|
+
/* Define to 1 if you have the <sys/vfs.h> header file. */
|
1123
|
+
#undef HAVE_SYS_VFS_H
|
1124
|
+
|
1125
|
+
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
|
1126
|
+
#undef HAVE_SYS_WAIT_H
|
1127
|
+
|
1128
|
+
/* Define to 1 if you have the <sys/xattr.h> header file. */
|
1129
|
+
#undef HAVE_SYS_XATTR_H
|
1130
|
+
|
1131
|
+
/* Define to 1 if you have the `timegm' function. */
|
1132
|
+
#undef HAVE_TIMEGM
|
1133
|
+
|
1134
|
+
/* Define to 1 if you have the <time.h> header file. */
|
1135
|
+
#undef HAVE_TIME_H
|
1136
|
+
|
1137
|
+
/* Define to 1 if you have the `tzset' function. */
|
1138
|
+
#undef HAVE_TZSET
|
1139
|
+
|
1140
|
+
/* Define to 1 if the system has the type `uintmax_t'. */
|
1141
|
+
#undef HAVE_UINTMAX_T
|
1142
|
+
|
1143
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
1144
|
+
#undef HAVE_UNISTD_H
|
1145
|
+
|
1146
|
+
/* Define to 1 if you have the `unlinkat' function. */
|
1147
|
+
#undef HAVE_UNLINKAT
|
1148
|
+
|
1149
|
+
/* Define to 1 if you have the `unsetenv' function. */
|
1150
|
+
#undef HAVE_UNSETENV
|
1151
|
+
|
1152
|
+
/* Define to 1 if the system has the type `unsigned long long'. */
|
1153
|
+
#undef HAVE_UNSIGNED_LONG_LONG
|
1154
|
+
|
1155
|
+
/* Define to 1 if the system has the type `unsigned long long int'. */
|
1156
|
+
#undef HAVE_UNSIGNED_LONG_LONG_INT
|
1157
|
+
|
1158
|
+
/* Define to 1 if you have the `utime' function. */
|
1159
|
+
#undef HAVE_UTIME
|
1160
|
+
|
1161
|
+
/* Define to 1 if you have the `utimensat' function. */
|
1162
|
+
#undef HAVE_UTIMENSAT
|
1163
|
+
|
1164
|
+
/* Define to 1 if you have the `utimes' function. */
|
1165
|
+
#undef HAVE_UTIMES
|
1166
|
+
|
1167
|
+
/* Define to 1 if you have the <utime.h> header file. */
|
1168
|
+
#undef HAVE_UTIME_H
|
1169
|
+
|
1170
|
+
/* Define to 1 if you have the `vfork' function. */
|
1171
|
+
#undef HAVE_VFORK
|
1172
|
+
|
1173
|
+
/* Define to 1 if you have the `vprintf' function. */
|
1174
|
+
#undef HAVE_VPRINTF
|
1175
|
+
|
1176
|
+
/* Define to 1 if you have the <wchar.h> header file. */
|
1177
|
+
#undef HAVE_WCHAR_H
|
1178
|
+
|
1179
|
+
/* Define to 1 if the system has the type `wchar_t'. */
|
1180
|
+
#undef HAVE_WCHAR_T
|
1181
|
+
|
1182
|
+
/* Define to 1 if you have the `wcrtomb' function. */
|
1183
|
+
#undef HAVE_WCRTOMB
|
1184
|
+
|
1185
|
+
/* Define to 1 if you have the `wcscmp' function. */
|
1186
|
+
#undef HAVE_WCSCMP
|
1187
|
+
|
1188
|
+
/* Define to 1 if you have the `wcscpy' function. */
|
1189
|
+
#undef HAVE_WCSCPY
|
1190
|
+
|
1191
|
+
/* Define to 1 if you have the `wcslen' function. */
|
1192
|
+
#undef HAVE_WCSLEN
|
1193
|
+
|
1194
|
+
/* Define to 1 if you have the `wctomb' function. */
|
1195
|
+
#undef HAVE_WCTOMB
|
1196
|
+
|
1197
|
+
/* Define to 1 if you have the <wctype.h> header file. */
|
1198
|
+
#undef HAVE_WCTYPE_H
|
1199
|
+
|
1200
|
+
/* Define to 1 if you have the <wincrypt.h> header file. */
|
1201
|
+
#undef HAVE_WINCRYPT_H
|
1202
|
+
|
1203
|
+
/* Define to 1 if you have the <windows.h> header file. */
|
1204
|
+
#undef HAVE_WINDOWS_H
|
1205
|
+
|
1206
|
+
/* Define to 1 if you have the <winioctl.h> header file. */
|
1207
|
+
#undef HAVE_WINIOCTL_H
|
1208
|
+
|
1209
|
+
/* Define to 1 if you have the `wmemcmp' function. */
|
1210
|
+
#undef HAVE_WMEMCMP
|
1211
|
+
|
1212
|
+
/* Define to 1 if you have the `wmemcpy' function. */
|
1213
|
+
#undef HAVE_WMEMCPY
|
1214
|
+
|
1215
|
+
/* Define to 1 if you have the `wmemmove' function. */
|
1216
|
+
#undef HAVE_WMEMMOVE
|
1217
|
+
|
1218
|
+
/* Define to 1 if you have a working EXT2_IOC_GETFLAGS */
|
1219
|
+
#undef HAVE_WORKING_EXT2_IOC_GETFLAGS
|
1220
|
+
|
1221
|
+
/* Define to 1 if you have a working FS_IOC_GETFLAGS */
|
1222
|
+
#undef HAVE_WORKING_FS_IOC_GETFLAGS
|
1223
|
+
|
1224
|
+
/* Define to 1 if you have the <zlib.h> header file. */
|
1225
|
+
#undef HAVE_ZLIB_H
|
1226
|
+
|
1227
|
+
/* Define to 1 if you have the <zstd.h> header file. */
|
1228
|
+
#undef HAVE_ZSTD_H
|
1229
|
+
|
1230
|
+
/* Define to 1 if you have the `_ctime64_s' function. */
|
1231
|
+
#undef HAVE__CTIME64_S
|
1232
|
+
|
1233
|
+
/* Define to 1 if you have the `_fseeki64' function. */
|
1234
|
+
#undef HAVE__FSEEKI64
|
1235
|
+
|
1236
|
+
/* Define to 1 if you have the `_get_timezone' function. */
|
1237
|
+
#undef HAVE__GET_TIMEZONE
|
1238
|
+
|
1239
|
+
/* Define to 1 if you have the `_gmtime64_s' function. */
|
1240
|
+
#undef HAVE__GMTIME64_S
|
1241
|
+
|
1242
|
+
/* Define to 1 if you have the `_localtime64_s' function. */
|
1243
|
+
#undef HAVE__LOCALTIME64_S
|
1244
|
+
|
1245
|
+
/* Define to 1 if you have the `_mkgmtime64' function. */
|
1246
|
+
#undef HAVE__MKGMTIME64
|
1247
|
+
|
1248
|
+
/* Define as const if the declaration of iconv() needs const. */
|
1249
|
+
#undef ICONV_CONST
|
1250
|
+
|
1251
|
+
/* Version number of libarchive as a single integer */
|
1252
|
+
#undef LIBARCHIVE_VERSION_NUMBER
|
1253
|
+
|
1254
|
+
/* Version number of libarchive */
|
1255
|
+
#undef LIBARCHIVE_VERSION_STRING
|
1256
|
+
|
1257
|
+
/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
|
1258
|
+
slash. */
|
1259
|
+
#undef LSTAT_FOLLOWS_SLASHED_SYMLINK
|
1260
|
+
|
1261
|
+
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
1262
|
+
#undef LT_OBJDIR
|
1263
|
+
|
1264
|
+
/* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
|
1265
|
+
*/
|
1266
|
+
#undef MAJOR_IN_MKDEV
|
1267
|
+
|
1268
|
+
/* Define to 1 if `major', `minor', and `makedev' are declared in
|
1269
|
+
<sysmacros.h>. */
|
1270
|
+
#undef MAJOR_IN_SYSMACROS
|
1271
|
+
|
1272
|
+
/* Define to '0x05020000' for Windows Server 2003 APIs. */
|
1273
|
+
#undef NTDDI_VERSION
|
1274
|
+
|
1275
|
+
/* Name of package */
|
1276
|
+
#undef PACKAGE
|
1277
|
+
|
1278
|
+
/* Define to the address where bug reports for this package should be sent. */
|
1279
|
+
#undef PACKAGE_BUGREPORT
|
1280
|
+
|
1281
|
+
/* Define to the full name of this package. */
|
1282
|
+
#undef PACKAGE_NAME
|
1283
|
+
|
1284
|
+
/* Define to the full name and version of this package. */
|
1285
|
+
#undef PACKAGE_STRING
|
1286
|
+
|
1287
|
+
/* Define to the one symbol short name of this package. */
|
1288
|
+
#undef PACKAGE_TARNAME
|
1289
|
+
|
1290
|
+
/* Define to the home page for this package. */
|
1291
|
+
#undef PACKAGE_URL
|
1292
|
+
|
1293
|
+
/* Define to the version of this package. */
|
1294
|
+
#undef PACKAGE_VERSION
|
1295
|
+
|
1296
|
+
/* Define to 1 if PCRE_STATIC needs to be defined. */
|
1297
|
+
#undef PCRE_STATIC
|
1298
|
+
|
1299
|
+
/* The number of bytes in type int */
|
1300
|
+
#undef SIZEOF_INT
|
1301
|
+
|
1302
|
+
/* The number of bytes in type long */
|
1303
|
+
#undef SIZEOF_LONG
|
1304
|
+
|
1305
|
+
/* The size of `wchar_t', as computed by sizeof. */
|
1306
|
+
#undef SIZEOF_WCHAR_T
|
1307
|
+
|
1308
|
+
/* Define to 1 if all of the C90 standard headers exist (not just the ones
|
1309
|
+
required in a freestanding environment). This macro is provided for
|
1310
|
+
backward compatibility; new code need not use it. */
|
1311
|
+
#undef STDC_HEADERS
|
1312
|
+
|
1313
|
+
/* Define to 1 if strerror_r returns char *. */
|
1314
|
+
#undef STRERROR_R_CHAR_P
|
1315
|
+
|
1316
|
+
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. This
|
1317
|
+
macro is obsolete. */
|
1318
|
+
#undef TIME_WITH_SYS_TIME
|
1319
|
+
|
1320
|
+
/* Enable extensions on AIX 3, Interix. */
|
1321
|
+
#ifndef _ALL_SOURCE
|
1322
|
+
# undef _ALL_SOURCE
|
1323
|
+
#endif
|
1324
|
+
/* Enable general extensions on macOS. */
|
1325
|
+
#ifndef _DARWIN_C_SOURCE
|
1326
|
+
# undef _DARWIN_C_SOURCE
|
1327
|
+
#endif
|
1328
|
+
/* Enable general extensions on Solaris. */
|
1329
|
+
#ifndef __EXTENSIONS__
|
1330
|
+
# undef __EXTENSIONS__
|
1331
|
+
#endif
|
1332
|
+
/* Enable GNU extensions on systems that have them. */
|
1333
|
+
#ifndef _GNU_SOURCE
|
1334
|
+
# undef _GNU_SOURCE
|
1335
|
+
#endif
|
1336
|
+
/* Enable X/Open compliant socket functions that do not require linking
|
1337
|
+
with -lxnet on HP-UX 11.11. */
|
1338
|
+
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
|
1339
|
+
# undef _HPUX_ALT_XOPEN_SOCKET_API
|
1340
|
+
#endif
|
1341
|
+
/* Identify the host operating system as Minix.
|
1342
|
+
This macro does not affect the system headers' behavior.
|
1343
|
+
A future release of Autoconf may stop defining this macro. */
|
1344
|
+
#ifndef _MINIX
|
1345
|
+
# undef _MINIX
|
1346
|
+
#endif
|
1347
|
+
/* Enable general extensions on NetBSD.
|
1348
|
+
Enable NetBSD compatibility extensions on Minix. */
|
1349
|
+
#ifndef _NETBSD_SOURCE
|
1350
|
+
# undef _NETBSD_SOURCE
|
1351
|
+
#endif
|
1352
|
+
/* Enable OpenBSD compatibility extensions on NetBSD.
|
1353
|
+
Oddly enough, this does nothing on OpenBSD. */
|
1354
|
+
#ifndef _OPENBSD_SOURCE
|
1355
|
+
# undef _OPENBSD_SOURCE
|
1356
|
+
#endif
|
1357
|
+
/* Define to 1 if needed for POSIX-compatible behavior. */
|
1358
|
+
#ifndef _POSIX_SOURCE
|
1359
|
+
# undef _POSIX_SOURCE
|
1360
|
+
#endif
|
1361
|
+
/* Define to 2 if needed for POSIX-compatible behavior. */
|
1362
|
+
#ifndef _POSIX_1_SOURCE
|
1363
|
+
# undef _POSIX_1_SOURCE
|
1364
|
+
#endif
|
1365
|
+
/* Enable POSIX-compatible threading on Solaris. */
|
1366
|
+
#ifndef _POSIX_PTHREAD_SEMANTICS
|
1367
|
+
# undef _POSIX_PTHREAD_SEMANTICS
|
1368
|
+
#endif
|
1369
|
+
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
|
1370
|
+
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
|
1371
|
+
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
|
1372
|
+
#endif
|
1373
|
+
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
|
1374
|
+
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
|
1375
|
+
# undef __STDC_WANT_IEC_60559_BFP_EXT__
|
1376
|
+
#endif
|
1377
|
+
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
|
1378
|
+
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
|
1379
|
+
# undef __STDC_WANT_IEC_60559_DFP_EXT__
|
1380
|
+
#endif
|
1381
|
+
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
|
1382
|
+
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
|
1383
|
+
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
|
1384
|
+
#endif
|
1385
|
+
/* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
|
1386
|
+
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
|
1387
|
+
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
|
1388
|
+
#endif
|
1389
|
+
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
|
1390
|
+
#ifndef __STDC_WANT_LIB_EXT2__
|
1391
|
+
# undef __STDC_WANT_LIB_EXT2__
|
1392
|
+
#endif
|
1393
|
+
/* Enable extensions specified by ISO/IEC 24747:2009. */
|
1394
|
+
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
|
1395
|
+
# undef __STDC_WANT_MATH_SPEC_FUNCS__
|
1396
|
+
#endif
|
1397
|
+
/* Enable extensions on HP NonStop. */
|
1398
|
+
#ifndef _TANDEM_SOURCE
|
1399
|
+
# undef _TANDEM_SOURCE
|
1400
|
+
#endif
|
1401
|
+
/* Enable X/Open extensions. Define to 500 only if necessary
|
1402
|
+
to make mbstate_t available. */
|
1403
|
+
#ifndef _XOPEN_SOURCE
|
1404
|
+
# undef _XOPEN_SOURCE
|
1405
|
+
#endif
|
1406
|
+
|
1407
|
+
|
1408
|
+
/* Version number of package */
|
1409
|
+
#undef VERSION
|
1410
|
+
|
1411
|
+
/* Define to '0x0502' for Windows Server 2003 APIs. */
|
1412
|
+
#undef WINVER
|
1413
|
+
|
1414
|
+
/* Number of bits in a file offset, on hosts where this is settable. */
|
1415
|
+
#undef _FILE_OFFSET_BITS
|
1416
|
+
|
1417
|
+
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
|
1418
|
+
#undef _LARGEFILE_SOURCE
|
1419
|
+
|
1420
|
+
/* Define for large files, on AIX-style hosts. */
|
1421
|
+
#undef _LARGE_FILES
|
1422
|
+
|
1423
|
+
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
|
1424
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
1425
|
+
#define below would cause a syntax error. */
|
1426
|
+
#undef _UINT32_T
|
1427
|
+
|
1428
|
+
/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
|
1429
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
1430
|
+
#define below would cause a syntax error. */
|
1431
|
+
#undef _UINT64_T
|
1432
|
+
|
1433
|
+
/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
|
1434
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
1435
|
+
#define below would cause a syntax error. */
|
1436
|
+
#undef _UINT8_T
|
1437
|
+
|
1438
|
+
/* Define to '0x0502' for Windows Server 2003 APIs. */
|
1439
|
+
#undef _WIN32_WINNT
|
1440
|
+
|
1441
|
+
/* Internal macro for sanity checks */
|
1442
|
+
#undef __LIBARCHIVE_CONFIG_H_INCLUDED
|
1443
|
+
|
1444
|
+
/* Define to empty if `const' does not conform to ANSI C. */
|
1445
|
+
#undef const
|
1446
|
+
|
1447
|
+
/* Define to match typeof st_gid field of struct stat if <sys/types.h> doesn't
|
1448
|
+
define. */
|
1449
|
+
#undef gid_t
|
1450
|
+
|
1451
|
+
/* Define to `unsigned long' if <sys/types.h> does not define. */
|
1452
|
+
#undef id_t
|
1453
|
+
|
1454
|
+
/* Define to the type of a signed integer type of width exactly 16 bits if
|
1455
|
+
such a type exists and the standard includes do not define it. */
|
1456
|
+
#undef int16_t
|
1457
|
+
|
1458
|
+
/* Define to the type of a signed integer type of width exactly 32 bits if
|
1459
|
+
such a type exists and the standard includes do not define it. */
|
1460
|
+
#undef int32_t
|
1461
|
+
|
1462
|
+
/* Define to the type of a signed integer type of width exactly 64 bits if
|
1463
|
+
such a type exists and the standard includes do not define it. */
|
1464
|
+
#undef int64_t
|
1465
|
+
|
1466
|
+
/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
|
1467
|
+
not define. */
|
1468
|
+
#undef intmax_t
|
1469
|
+
|
1470
|
+
/* Define to `int' if <sys/types.h> does not define. */
|
1471
|
+
#undef mode_t
|
1472
|
+
|
1473
|
+
/* Define to `long long' if <sys/types.h> does not define. */
|
1474
|
+
#undef off_t
|
1475
|
+
|
1476
|
+
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
1477
|
+
#undef size_t
|
1478
|
+
|
1479
|
+
/* Define to match typeof st_uid field of struct stat if <sys/types.h> doesn't
|
1480
|
+
define. */
|
1481
|
+
#undef uid_t
|
1482
|
+
|
1483
|
+
/* Define to the type of an unsigned integer type of width exactly 16 bits if
|
1484
|
+
such a type exists and the standard includes do not define it. */
|
1485
|
+
#undef uint16_t
|
1486
|
+
|
1487
|
+
/* Define to the type of an unsigned integer type of width exactly 32 bits if
|
1488
|
+
such a type exists and the standard includes do not define it. */
|
1489
|
+
#undef uint32_t
|
1490
|
+
|
1491
|
+
/* Define to the type of an unsigned integer type of width exactly 64 bits if
|
1492
|
+
such a type exists and the standard includes do not define it. */
|
1493
|
+
#undef uint64_t
|
1494
|
+
|
1495
|
+
/* Define to the type of an unsigned integer type of width exactly 8 bits if
|
1496
|
+
such a type exists and the standard includes do not define it. */
|
1497
|
+
#undef uint8_t
|
1498
|
+
|
1499
|
+
/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
|
1500
|
+
do not define. */
|
1501
|
+
#undef uintmax_t
|
1502
|
+
|
1503
|
+
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
1504
|
+
#undef uintptr_t
|