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
@@ -1,772 +0,0 @@
|
|
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
|