libarchive-static 1.0.5 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,671 @@
|
|
1
|
+
#! /bin/bash
|
2
|
+
# Generated by configure.
|
3
|
+
# Run this file to recreate the current configuration.
|
4
|
+
# Compiler output produced by configure, useful for debugging
|
5
|
+
# configure, is in config.log if it exists.
|
6
|
+
|
7
|
+
debug=false
|
8
|
+
ac_cs_recheck=false
|
9
|
+
ac_cs_silent=false
|
10
|
+
SHELL=${CONFIG_SHELL-/bin/bash}
|
11
|
+
## --------------------- ##
|
12
|
+
## M4sh Initialization. ##
|
13
|
+
## --------------------- ##
|
14
|
+
|
15
|
+
# Be more Bourne compatible
|
16
|
+
DUALCASE=1; export DUALCASE # for MKS sh
|
17
|
+
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
18
|
+
emulate sh
|
19
|
+
NULLCMD=:
|
20
|
+
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
21
|
+
# is contrary to our usage. Disable this feature.
|
22
|
+
alias -g '${1+"$@"}'='"$@"'
|
23
|
+
setopt NO_GLOB_SUBST
|
24
|
+
else
|
25
|
+
case `(set -o) 2>/dev/null` in
|
26
|
+
*posix*) set -o posix ;;
|
27
|
+
esac
|
28
|
+
|
29
|
+
fi
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
# PATH needs CR
|
35
|
+
# Avoid depending upon Character Ranges.
|
36
|
+
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
37
|
+
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
38
|
+
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
39
|
+
as_cr_digits='0123456789'
|
40
|
+
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
41
|
+
|
42
|
+
# The user is always right.
|
43
|
+
if test "${PATH_SEPARATOR+set}" != set; then
|
44
|
+
echo "#! /bin/sh" >conf$$.sh
|
45
|
+
echo "exit 0" >>conf$$.sh
|
46
|
+
chmod +x conf$$.sh
|
47
|
+
if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
48
|
+
PATH_SEPARATOR=';'
|
49
|
+
else
|
50
|
+
PATH_SEPARATOR=:
|
51
|
+
fi
|
52
|
+
rm -f conf$$.sh
|
53
|
+
fi
|
54
|
+
|
55
|
+
# Support unset when possible.
|
56
|
+
if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
|
57
|
+
as_unset=unset
|
58
|
+
else
|
59
|
+
as_unset=false
|
60
|
+
fi
|
61
|
+
|
62
|
+
|
63
|
+
# IFS
|
64
|
+
# We need space, tab and new line, in precisely that order. Quoting is
|
65
|
+
# there to prevent editors from complaining about space-tab.
|
66
|
+
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
67
|
+
# splitting by setting IFS to empty value.)
|
68
|
+
as_nl='
|
69
|
+
'
|
70
|
+
IFS=" "" $as_nl"
|
71
|
+
|
72
|
+
# Find who we are. Look in the path if we contain no directory separator.
|
73
|
+
case $0 in
|
74
|
+
*[\\/]* ) as_myself=$0 ;;
|
75
|
+
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
76
|
+
for as_dir in $PATH
|
77
|
+
do
|
78
|
+
IFS=$as_save_IFS
|
79
|
+
test -z "$as_dir" && as_dir=.
|
80
|
+
test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
81
|
+
done
|
82
|
+
IFS=$as_save_IFS
|
83
|
+
|
84
|
+
;;
|
85
|
+
esac
|
86
|
+
# We did not find ourselves, most probably we were run as `sh COMMAND'
|
87
|
+
# in which case we are not to be found in the path.
|
88
|
+
if test "x$as_myself" = x; then
|
89
|
+
as_myself=$0
|
90
|
+
fi
|
91
|
+
if test ! -f "$as_myself"; then
|
92
|
+
echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
93
|
+
{ (exit 1); exit 1; }
|
94
|
+
fi
|
95
|
+
|
96
|
+
# Work around bugs in pre-3.0 UWIN ksh.
|
97
|
+
for as_var in ENV MAIL MAILPATH
|
98
|
+
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
99
|
+
done
|
100
|
+
PS1='$ '
|
101
|
+
PS2='> '
|
102
|
+
PS4='+ '
|
103
|
+
|
104
|
+
# NLS nuisances.
|
105
|
+
for as_var in \
|
106
|
+
LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
107
|
+
LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
108
|
+
LC_TELEPHONE LC_TIME
|
109
|
+
do
|
110
|
+
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
111
|
+
eval $as_var=C; export $as_var
|
112
|
+
else
|
113
|
+
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
114
|
+
fi
|
115
|
+
done
|
116
|
+
|
117
|
+
# Required to use basename.
|
118
|
+
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
119
|
+
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
120
|
+
as_expr=expr
|
121
|
+
else
|
122
|
+
as_expr=false
|
123
|
+
fi
|
124
|
+
|
125
|
+
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
|
126
|
+
as_basename=basename
|
127
|
+
else
|
128
|
+
as_basename=false
|
129
|
+
fi
|
130
|
+
|
131
|
+
|
132
|
+
# Name of the executable.
|
133
|
+
as_me=`$as_basename -- "$0" ||
|
134
|
+
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
135
|
+
X"$0" : 'X\(//\)$' \| \
|
136
|
+
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
137
|
+
echo X/"$0" |
|
138
|
+
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
139
|
+
s//\1/
|
140
|
+
q
|
141
|
+
}
|
142
|
+
/^X\/\(\/\/\)$/{
|
143
|
+
s//\1/
|
144
|
+
q
|
145
|
+
}
|
146
|
+
/^X\/\(\/\).*/{
|
147
|
+
s//\1/
|
148
|
+
q
|
149
|
+
}
|
150
|
+
s/.*/./; q'`
|
151
|
+
|
152
|
+
# CDPATH.
|
153
|
+
$as_unset CDPATH
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
as_lineno_1=$LINENO
|
158
|
+
as_lineno_2=$LINENO
|
159
|
+
test "x$as_lineno_1" != "x$as_lineno_2" &&
|
160
|
+
test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
|
161
|
+
|
162
|
+
# Create $as_me.lineno as a copy of $as_myself, but with $LINENO
|
163
|
+
# uniformly replaced by the line number. The first 'sed' inserts a
|
164
|
+
# line-number line after each line using $LINENO; the second 'sed'
|
165
|
+
# does the real work. The second script uses 'N' to pair each
|
166
|
+
# line-number line with the line containing $LINENO, and appends
|
167
|
+
# trailing '-' during substitution so that $LINENO is not a special
|
168
|
+
# case at line end.
|
169
|
+
# (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
|
170
|
+
# scripts with optimization help from Paolo Bonzini. Blame Lee
|
171
|
+
# E. McMahon (1931-1989) for sed's syntax. :-)
|
172
|
+
sed -n '
|
173
|
+
p
|
174
|
+
/[$]LINENO/=
|
175
|
+
' <$as_myself |
|
176
|
+
sed '
|
177
|
+
s/[$]LINENO.*/&-/
|
178
|
+
t lineno
|
179
|
+
b
|
180
|
+
:lineno
|
181
|
+
N
|
182
|
+
:loop
|
183
|
+
s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
|
184
|
+
t loop
|
185
|
+
s/-\n.*//
|
186
|
+
' >$as_me.lineno &&
|
187
|
+
chmod +x "$as_me.lineno" ||
|
188
|
+
{ echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
189
|
+
{ (exit 1); exit 1; }; }
|
190
|
+
|
191
|
+
# Don't try to exec as it changes $[0], causing all sort of problems
|
192
|
+
# (the dirname of $[0] is not the place where we might find the
|
193
|
+
# original and so on. Autoconf is especially sensitive to this).
|
194
|
+
. "./$as_me.lineno"
|
195
|
+
# Exit status is that of the last command.
|
196
|
+
exit
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
|
201
|
+
as_dirname=dirname
|
202
|
+
else
|
203
|
+
as_dirname=false
|
204
|
+
fi
|
205
|
+
|
206
|
+
ECHO_C= ECHO_N= ECHO_T=
|
207
|
+
case `echo -n x` in
|
208
|
+
-n*)
|
209
|
+
case `echo 'x\c'` in
|
210
|
+
*c*) ECHO_T=' ';; # ECHO_T is single tab character.
|
211
|
+
*) ECHO_C='\c';;
|
212
|
+
esac;;
|
213
|
+
*)
|
214
|
+
ECHO_N='-n';;
|
215
|
+
esac
|
216
|
+
|
217
|
+
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
218
|
+
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
219
|
+
as_expr=expr
|
220
|
+
else
|
221
|
+
as_expr=false
|
222
|
+
fi
|
223
|
+
|
224
|
+
rm -f conf$$ conf$$.exe conf$$.file
|
225
|
+
if test -d conf$$.dir; then
|
226
|
+
rm -f conf$$.dir/conf$$.file
|
227
|
+
else
|
228
|
+
rm -f conf$$.dir
|
229
|
+
mkdir conf$$.dir
|
230
|
+
fi
|
231
|
+
echo >conf$$.file
|
232
|
+
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
233
|
+
as_ln_s='ln -s'
|
234
|
+
# ... but there are two gotchas:
|
235
|
+
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
236
|
+
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
237
|
+
# In both cases, we have to default to `cp -p'.
|
238
|
+
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
239
|
+
as_ln_s='cp -p'
|
240
|
+
elif ln conf$$.file conf$$ 2>/dev/null; then
|
241
|
+
as_ln_s=ln
|
242
|
+
else
|
243
|
+
as_ln_s='cp -p'
|
244
|
+
fi
|
245
|
+
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
246
|
+
rmdir conf$$.dir 2>/dev/null
|
247
|
+
|
248
|
+
if mkdir -p . 2>/dev/null; then
|
249
|
+
as_mkdir_p=:
|
250
|
+
else
|
251
|
+
test -d ./-p && rmdir ./-p
|
252
|
+
as_mkdir_p=false
|
253
|
+
fi
|
254
|
+
|
255
|
+
if test -x / >/dev/null 2>&1; then
|
256
|
+
as_test_x='test -x'
|
257
|
+
else
|
258
|
+
if ls -dL / >/dev/null 2>&1; then
|
259
|
+
as_ls_L_option=L
|
260
|
+
else
|
261
|
+
as_ls_L_option=
|
262
|
+
fi
|
263
|
+
as_test_x='
|
264
|
+
eval sh -c '\''
|
265
|
+
if test -d "$1"; then
|
266
|
+
test -d "$1/.";
|
267
|
+
else
|
268
|
+
case $1 in
|
269
|
+
-*)set "./$1";;
|
270
|
+
esac;
|
271
|
+
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
|
272
|
+
???[sx]*):;;*)false;;esac;fi
|
273
|
+
'\'' sh
|
274
|
+
'
|
275
|
+
fi
|
276
|
+
as_executable_p=$as_test_x
|
277
|
+
|
278
|
+
# Sed expression to map a string onto a valid CPP name.
|
279
|
+
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
280
|
+
|
281
|
+
# Sed expression to map a string onto a valid variable name.
|
282
|
+
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
283
|
+
|
284
|
+
|
285
|
+
exec 6>&1
|
286
|
+
|
287
|
+
# Save the log message, to keep $[0] and so on meaningful, and to
|
288
|
+
# report actual input values of CONFIG_FILES etc. instead of their
|
289
|
+
# values after options handling.
|
290
|
+
ac_log="
|
291
|
+
This file was extended by $as_me, which was
|
292
|
+
generated by GNU Autoconf 2.61. Invocation command line was
|
293
|
+
|
294
|
+
CONFIG_FILES = $CONFIG_FILES
|
295
|
+
CONFIG_HEADERS = $CONFIG_HEADERS
|
296
|
+
CONFIG_LINKS = $CONFIG_LINKS
|
297
|
+
CONFIG_COMMANDS = $CONFIG_COMMANDS
|
298
|
+
$ $0 $@
|
299
|
+
|
300
|
+
on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
301
|
+
"
|
302
|
+
|
303
|
+
# Files that config.status was made for.
|
304
|
+
config_headers=" config.h"
|
305
|
+
|
306
|
+
ac_cs_usage="\
|
307
|
+
\`$as_me' instantiates files from templates according to the
|
308
|
+
current configuration.
|
309
|
+
|
310
|
+
Usage: $0 [OPTIONS] [FILE]...
|
311
|
+
|
312
|
+
-h, --help print this help, then exit
|
313
|
+
-V, --version print version number and configuration settings, then exit
|
314
|
+
-q, --quiet do not print progress messages
|
315
|
+
-d, --debug don't remove temporary files
|
316
|
+
--recheck update $as_me by reconfiguring in the same conditions
|
317
|
+
--header=FILE[:TEMPLATE]
|
318
|
+
instantiate the configuration header FILE
|
319
|
+
|
320
|
+
Configuration headers:
|
321
|
+
$config_headers
|
322
|
+
|
323
|
+
Report bugs to <bug-autoconf@gnu.org>."
|
324
|
+
|
325
|
+
ac_cs_version="\
|
326
|
+
config.status
|
327
|
+
configured by configure, generated by GNU Autoconf 2.61,
|
328
|
+
with options \"'CFLAGS=-fPIC -I/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/x86_64-linux -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/ruby/backward -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0 -I/home/stesla/.rbenv/versions/3.1.2/lib/ruby/3.1.0/x86_64-linux ' 'LDFLAGS=-L/home/stesla/.rbenv/versions/3.1.2/lib -L/home/stesla/Projects/libarchive-ruby-static/zlib-1.2.13 -L/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -larchive'\"
|
329
|
+
|
330
|
+
Copyright (C) 2006 Free Software Foundation, Inc.
|
331
|
+
This config.status script is free software; the Free Software Foundation
|
332
|
+
gives unlimited permission to copy, distribute and modify it."
|
333
|
+
|
334
|
+
ac_pwd='/home/stesla/Projects/libarchive-ruby-static/libarchive-0.1.1/ext'
|
335
|
+
srcdir='.'
|
336
|
+
INSTALL='/usr/bin/install -c'
|
337
|
+
# If no file are specified by the user, then we need to provide default
|
338
|
+
# value. By we need to know if files were specified by the user.
|
339
|
+
ac_need_defaults=:
|
340
|
+
while test $# != 0
|
341
|
+
do
|
342
|
+
case $1 in
|
343
|
+
--*=*)
|
344
|
+
ac_option=`expr "X$1" : 'X\([^=]*\)='`
|
345
|
+
ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
|
346
|
+
ac_shift=:
|
347
|
+
;;
|
348
|
+
*)
|
349
|
+
ac_option=$1
|
350
|
+
ac_optarg=$2
|
351
|
+
ac_shift=shift
|
352
|
+
;;
|
353
|
+
esac
|
354
|
+
|
355
|
+
case $ac_option in
|
356
|
+
# Handling of the options.
|
357
|
+
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
358
|
+
ac_cs_recheck=: ;;
|
359
|
+
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
|
360
|
+
echo "$ac_cs_version"; exit ;;
|
361
|
+
--debug | --debu | --deb | --de | --d | -d )
|
362
|
+
debug=: ;;
|
363
|
+
--header | --heade | --head | --hea )
|
364
|
+
$ac_shift
|
365
|
+
CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
|
366
|
+
ac_need_defaults=false;;
|
367
|
+
--he | --h)
|
368
|
+
# Conflict between --help and --header
|
369
|
+
{ echo "$as_me: error: ambiguous option: $1
|
370
|
+
Try \`$0 --help' for more information." >&2
|
371
|
+
{ (exit 1); exit 1; }; };;
|
372
|
+
--help | --hel | -h )
|
373
|
+
echo "$ac_cs_usage"; exit ;;
|
374
|
+
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
375
|
+
| -silent | --silent | --silen | --sile | --sil | --si | --s)
|
376
|
+
ac_cs_silent=: ;;
|
377
|
+
|
378
|
+
# This is an error.
|
379
|
+
-*) { echo "$as_me: error: unrecognized option: $1
|
380
|
+
Try \`$0 --help' for more information." >&2
|
381
|
+
{ (exit 1); exit 1; }; } ;;
|
382
|
+
|
383
|
+
*) ac_config_targets="$ac_config_targets $1"
|
384
|
+
ac_need_defaults=false ;;
|
385
|
+
|
386
|
+
esac
|
387
|
+
shift
|
388
|
+
done
|
389
|
+
|
390
|
+
ac_configure_extra_args=
|
391
|
+
|
392
|
+
if $ac_cs_silent; then
|
393
|
+
exec 6>/dev/null
|
394
|
+
ac_configure_extra_args="$ac_configure_extra_args --silent"
|
395
|
+
fi
|
396
|
+
|
397
|
+
if $ac_cs_recheck; then
|
398
|
+
echo "running CONFIG_SHELL=/bin/bash /bin/bash configure " 'CFLAGS=-fPIC -I/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/x86_64-linux -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/ruby/backward -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0 -I/home/stesla/.rbenv/versions/3.1.2/lib/ruby/3.1.0/x86_64-linux ' 'LDFLAGS=-L/home/stesla/.rbenv/versions/3.1.2/lib -L/home/stesla/Projects/libarchive-ruby-static/zlib-1.2.13 -L/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -larchive' $ac_configure_extra_args " --no-create --no-recursion" >&6
|
399
|
+
CONFIG_SHELL=/bin/bash
|
400
|
+
export CONFIG_SHELL
|
401
|
+
exec /bin/bash "configure" 'CFLAGS=-fPIC -I/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/x86_64-linux -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0/ruby/backward -I/home/stesla/.rbenv/versions/3.1.2/include/ruby-3.1.0 -I/home/stesla/.rbenv/versions/3.1.2/lib/ruby/3.1.0/x86_64-linux ' 'LDFLAGS=-L/home/stesla/.rbenv/versions/3.1.2/lib -L/home/stesla/Projects/libarchive-ruby-static/zlib-1.2.13 -L/home/stesla/Projects/libarchive-ruby-static/libarchive-3.6.2/libarchive -larchive' $ac_configure_extra_args --no-create --no-recursion
|
402
|
+
fi
|
403
|
+
|
404
|
+
exec 5>>config.log
|
405
|
+
{
|
406
|
+
echo
|
407
|
+
sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
|
408
|
+
## Running $as_me. ##
|
409
|
+
_ASBOX
|
410
|
+
echo "$ac_log"
|
411
|
+
} >&5
|
412
|
+
|
413
|
+
|
414
|
+
# Handling of arguments.
|
415
|
+
for ac_config_target in $ac_config_targets
|
416
|
+
do
|
417
|
+
case $ac_config_target in
|
418
|
+
"config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
419
|
+
|
420
|
+
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
421
|
+
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
422
|
+
{ (exit 1); exit 1; }; };;
|
423
|
+
esac
|
424
|
+
done
|
425
|
+
|
426
|
+
|
427
|
+
# If the user did not use the arguments to specify the items to instantiate,
|
428
|
+
# then the envvar interface is used. Set only those that are not.
|
429
|
+
# We use the long form for the default assignment because of an extremely
|
430
|
+
# bizarre bug on SunOS 4.1.3.
|
431
|
+
if $ac_need_defaults; then
|
432
|
+
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
433
|
+
fi
|
434
|
+
|
435
|
+
# Have a temporary directory for convenience. Make it in the build tree
|
436
|
+
# simply because there is no reason against having it here, and in addition,
|
437
|
+
# creating and moving files from /tmp can sometimes cause problems.
|
438
|
+
# Hook for its removal unless debugging.
|
439
|
+
# Note that there is a small window in which the directory will not be cleaned:
|
440
|
+
# after its creation but before its name has been assigned to `$tmp'.
|
441
|
+
$debug ||
|
442
|
+
{
|
443
|
+
tmp=
|
444
|
+
trap 'exit_status=$?
|
445
|
+
{ test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
|
446
|
+
' 0
|
447
|
+
trap '{ (exit 1); exit 1; }' 1 2 13 15
|
448
|
+
}
|
449
|
+
# Create a (secure) tmp directory for tmp files.
|
450
|
+
|
451
|
+
{
|
452
|
+
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
|
453
|
+
test -n "$tmp" && test -d "$tmp"
|
454
|
+
} ||
|
455
|
+
{
|
456
|
+
tmp=./conf$$-$RANDOM
|
457
|
+
(umask 077 && mkdir "$tmp")
|
458
|
+
} ||
|
459
|
+
{
|
460
|
+
echo "$me: cannot create a temporary directory in ." >&2
|
461
|
+
{ (exit 1); exit 1; }
|
462
|
+
}
|
463
|
+
|
464
|
+
|
465
|
+
for ac_tag in :H $CONFIG_HEADERS
|
466
|
+
do
|
467
|
+
case $ac_tag in
|
468
|
+
:[FHLC]) ac_mode=$ac_tag; continue;;
|
469
|
+
esac
|
470
|
+
case $ac_mode$ac_tag in
|
471
|
+
:[FHL]*:*);;
|
472
|
+
:L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
|
473
|
+
echo "$as_me: error: Invalid tag $ac_tag." >&2;}
|
474
|
+
{ (exit 1); exit 1; }; };;
|
475
|
+
:[FH]-) ac_tag=-:-;;
|
476
|
+
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
|
477
|
+
esac
|
478
|
+
ac_save_IFS=$IFS
|
479
|
+
IFS=:
|
480
|
+
set x $ac_tag
|
481
|
+
IFS=$ac_save_IFS
|
482
|
+
shift
|
483
|
+
ac_file=$1
|
484
|
+
shift
|
485
|
+
|
486
|
+
case $ac_mode in
|
487
|
+
:L) ac_source=$1;;
|
488
|
+
:[FH])
|
489
|
+
ac_file_inputs=
|
490
|
+
for ac_f
|
491
|
+
do
|
492
|
+
case $ac_f in
|
493
|
+
-) ac_f="$tmp/stdin";;
|
494
|
+
*) # Look for the file first in the build tree, then in the source tree
|
495
|
+
# (if the path is not absolute). The absolute path cannot be DOS-style,
|
496
|
+
# because $ac_f cannot contain `:'.
|
497
|
+
test -f "$ac_f" ||
|
498
|
+
case $ac_f in
|
499
|
+
[\\/$]*) false;;
|
500
|
+
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
|
501
|
+
esac ||
|
502
|
+
{ { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
|
503
|
+
echo "$as_me: error: cannot find input file: $ac_f" >&2;}
|
504
|
+
{ (exit 1); exit 1; }; };;
|
505
|
+
esac
|
506
|
+
ac_file_inputs="$ac_file_inputs $ac_f"
|
507
|
+
done
|
508
|
+
|
509
|
+
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
510
|
+
# use $as_me), people would be surprised to read:
|
511
|
+
# /* config.h. Generated by config.status. */
|
512
|
+
configure_input="Generated from "`IFS=:
|
513
|
+
echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
|
514
|
+
if test x"$ac_file" != x-; then
|
515
|
+
configure_input="$ac_file. $configure_input"
|
516
|
+
{ echo "$as_me:$LINENO: creating $ac_file" >&5
|
517
|
+
echo "$as_me: creating $ac_file" >&6;}
|
518
|
+
fi
|
519
|
+
|
520
|
+
case $ac_tag in
|
521
|
+
*:-:* | *:-) cat >"$tmp/stdin";;
|
522
|
+
esac
|
523
|
+
;;
|
524
|
+
esac
|
525
|
+
|
526
|
+
ac_dir=`$as_dirname -- "$ac_file" ||
|
527
|
+
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
528
|
+
X"$ac_file" : 'X\(//\)[^/]' \| \
|
529
|
+
X"$ac_file" : 'X\(//\)$' \| \
|
530
|
+
X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
|
531
|
+
echo X"$ac_file" |
|
532
|
+
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
533
|
+
s//\1/
|
534
|
+
q
|
535
|
+
}
|
536
|
+
/^X\(\/\/\)[^/].*/{
|
537
|
+
s//\1/
|
538
|
+
q
|
539
|
+
}
|
540
|
+
/^X\(\/\/\)$/{
|
541
|
+
s//\1/
|
542
|
+
q
|
543
|
+
}
|
544
|
+
/^X\(\/\).*/{
|
545
|
+
s//\1/
|
546
|
+
q
|
547
|
+
}
|
548
|
+
s/.*/./; q'`
|
549
|
+
{ as_dir="$ac_dir"
|
550
|
+
case $as_dir in #(
|
551
|
+
-*) as_dir=./$as_dir;;
|
552
|
+
esac
|
553
|
+
test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
|
554
|
+
as_dirs=
|
555
|
+
while :; do
|
556
|
+
case $as_dir in #(
|
557
|
+
*\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
|
558
|
+
*) as_qdir=$as_dir;;
|
559
|
+
esac
|
560
|
+
as_dirs="'$as_qdir' $as_dirs"
|
561
|
+
as_dir=`$as_dirname -- "$as_dir" ||
|
562
|
+
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
563
|
+
X"$as_dir" : 'X\(//\)[^/]' \| \
|
564
|
+
X"$as_dir" : 'X\(//\)$' \| \
|
565
|
+
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
566
|
+
echo X"$as_dir" |
|
567
|
+
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
568
|
+
s//\1/
|
569
|
+
q
|
570
|
+
}
|
571
|
+
/^X\(\/\/\)[^/].*/{
|
572
|
+
s//\1/
|
573
|
+
q
|
574
|
+
}
|
575
|
+
/^X\(\/\/\)$/{
|
576
|
+
s//\1/
|
577
|
+
q
|
578
|
+
}
|
579
|
+
/^X\(\/\).*/{
|
580
|
+
s//\1/
|
581
|
+
q
|
582
|
+
}
|
583
|
+
s/.*/./; q'`
|
584
|
+
test -d "$as_dir" && break
|
585
|
+
done
|
586
|
+
test -z "$as_dirs" || eval "mkdir $as_dirs"
|
587
|
+
} || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
588
|
+
echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
589
|
+
{ (exit 1); exit 1; }; }; }
|
590
|
+
ac_builddir=.
|
591
|
+
|
592
|
+
case "$ac_dir" in
|
593
|
+
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
594
|
+
*)
|
595
|
+
ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
|
596
|
+
# A ".." for each directory in $ac_dir_suffix.
|
597
|
+
ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
|
598
|
+
case $ac_top_builddir_sub in
|
599
|
+
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
600
|
+
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
601
|
+
esac ;;
|
602
|
+
esac
|
603
|
+
ac_abs_top_builddir=$ac_pwd
|
604
|
+
ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
605
|
+
# for backward compatibility:
|
606
|
+
ac_top_builddir=$ac_top_build_prefix
|
607
|
+
|
608
|
+
case $srcdir in
|
609
|
+
.) # We are building in place.
|
610
|
+
ac_srcdir=.
|
611
|
+
ac_top_srcdir=$ac_top_builddir_sub
|
612
|
+
ac_abs_top_srcdir=$ac_pwd ;;
|
613
|
+
[\\/]* | ?:[\\/]* ) # Absolute name.
|
614
|
+
ac_srcdir=$srcdir$ac_dir_suffix;
|
615
|
+
ac_top_srcdir=$srcdir
|
616
|
+
ac_abs_top_srcdir=$srcdir ;;
|
617
|
+
*) # Relative name.
|
618
|
+
ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
619
|
+
ac_top_srcdir=$ac_top_build_prefix$srcdir
|
620
|
+
ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
621
|
+
esac
|
622
|
+
ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
623
|
+
|
624
|
+
|
625
|
+
case $ac_mode in
|
626
|
+
|
627
|
+
:H)
|
628
|
+
#
|
629
|
+
# CONFIG_HEADER
|
630
|
+
#
|
631
|
+
# First, check the format of the line:
|
632
|
+
cat >"$tmp/defines.sed" <<\CEOF
|
633
|
+
/^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*$/b def
|
634
|
+
/^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def
|
635
|
+
b
|
636
|
+
:def
|
637
|
+
s/$/ /
|
638
|
+
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "" ,
|
639
|
+
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "" ,
|
640
|
+
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "" ,
|
641
|
+
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "" ,
|
642
|
+
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "" ,
|
643
|
+
s/ $//
|
644
|
+
s,^[ #]*u.*,/* & */,
|
645
|
+
CEOF
|
646
|
+
sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1"
|
647
|
+
ac_result="$tmp/out1"
|
648
|
+
if test x"$ac_file" != x-; then
|
649
|
+
echo "/* $configure_input */" >"$tmp/config.h"
|
650
|
+
cat "$ac_result" >>"$tmp/config.h"
|
651
|
+
if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
|
652
|
+
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
|
653
|
+
echo "$as_me: $ac_file is unchanged" >&6;}
|
654
|
+
else
|
655
|
+
rm -f $ac_file
|
656
|
+
mv "$tmp/config.h" $ac_file
|
657
|
+
fi
|
658
|
+
else
|
659
|
+
echo "/* $configure_input */"
|
660
|
+
cat "$ac_result"
|
661
|
+
fi
|
662
|
+
rm -f "$tmp/out12"
|
663
|
+
;;
|
664
|
+
|
665
|
+
|
666
|
+
esac
|
667
|
+
|
668
|
+
done # for ac_tag
|
669
|
+
|
670
|
+
|
671
|
+
{ (exit 0); exit 0; }
|
Binary file
|