libarchive-static 1.0.6 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (295) hide show
  1. checksums.yaml +4 -4
  2. data/ext/extconf.rb +2 -9
  3. data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
  4. data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
  5. data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
  6. data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
  7. data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
  8. data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
  9. data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
  10. data/ext/libarchive-0.1.1/ext/config.h +23 -0
  11. data/ext/libarchive-0.1.1/ext/config.log +230 -0
  12. data/ext/libarchive-0.1.1/ext/config.status +671 -0
  13. data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
  14. data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
  15. data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
  16. data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
  17. data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
  18. data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
  19. data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
  20. data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
  21. data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
  22. data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
  23. data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
  24. data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
  25. data/ext/libarchive-3.6.2/Makefile.in +16892 -0
  26. data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
  27. data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
  28. data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
  29. data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
  30. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
  31. data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
  32. data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
  33. data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
  34. data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
  35. data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
  36. data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
  37. data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
  38. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
  39. data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
  40. data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
  41. data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
  42. data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
  43. data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
  44. data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
  45. data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
  46. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
  47. data/ext/libarchive-3.6.2/config.h.in +1504 -0
  48. data/ext/libarchive-3.6.2/configure +25558 -0
  49. data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
  50. data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
  51. data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
  52. data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
  53. data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
  54. data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
  55. data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
  56. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
  57. data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
  58. data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
  59. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
  60. data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
  61. data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
  62. data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
  63. data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
  64. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
  65. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
  66. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
  67. data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
  68. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
  69. data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
  70. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
  71. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
  72. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
  73. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
  74. data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
  75. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
  76. data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
  77. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
  78. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
  79. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
  80. data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
  81. data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
  82. data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
  83. data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
  84. data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
  85. data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
  86. data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
  87. data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
  88. data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
  89. data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
  90. data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
  91. data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
  92. data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
  93. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
  94. data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
  95. data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
  96. data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
  97. data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
  98. data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
  99. data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
  100. data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
  101. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
  102. data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
  103. data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
  104. data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
  105. data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
  106. data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
  107. data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
  108. data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
  109. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
  110. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
  111. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
  112. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
  113. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
  114. data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
  115. data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
  116. data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
  117. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
  118. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
  119. data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
  120. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
  121. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
  122. data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
  123. data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
  124. 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
  125. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
  126. 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
  127. 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
  128. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
  129. 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
  130. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
  131. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
  132. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
  139. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
  140. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
  141. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
  142. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
  143. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
  144. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
  145. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
  146. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
  147. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
  148. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
  149. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
  150. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
  151. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
  152. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
  153. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
  154. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
  155. data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
  156. data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
  157. data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
  158. data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
  159. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
  160. data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
  161. data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
  162. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
  163. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
  164. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
  165. data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
  166. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
  167. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
  168. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
  169. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
  170. 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
  171. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
  172. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
  173. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
  174. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
  175. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
  176. 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
  177. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
  178. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
  179. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
  180. data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
  181. data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
  182. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
  183. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
  184. data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
  185. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
  186. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
  187. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
  188. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
  189. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
  190. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
  191. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
  192. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
  193. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
  194. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
  195. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
  196. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
  197. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
  198. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
  199. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
  200. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
  201. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
  202. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
  203. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
  204. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
  205. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
  206. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
  207. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
  208. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
  209. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
  210. data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
  211. data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
  212. data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
  213. data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
  214. data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
  215. data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
  216. data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
  217. data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
  218. data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
  219. data/ext/libarchive-static-makefile +144 -80
  220. data/ext/libarchive-static-wrapper-makefile +1 -1
  221. data/ext/zlib-1.2.13/Makefile.in +404 -0
  222. data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
  223. data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
  224. data/ext/zlib-1.2.13/configure +922 -0
  225. data/ext/zlib-1.2.13/crc32.c +1125 -0
  226. data/ext/zlib-1.2.13/crc32.h +9446 -0
  227. data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
  228. data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
  229. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
  230. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
  231. data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
  232. data/ext/zlib-1.2.13/gzread.c +650 -0
  233. data/ext/zlib-1.2.13/gzwrite.c +677 -0
  234. data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
  235. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
  236. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
  237. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
  238. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
  239. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
  240. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
  241. data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
  242. data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
  243. data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
  244. data/ext/zlib-1.2.13/uncompr.c +93 -0
  245. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
  246. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
  247. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
  248. data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
  249. metadata +241 -133
  250. data/ext/libarchive-0.1.1/libarchive.c +0 -1762
  251. data/ext/libarchive-2.8.4/Makefile.in +0 -7076
  252. data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
  253. data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
  254. data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
  255. data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
  256. data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
  257. data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
  258. data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
  259. data/ext/libarchive-2.8.4/config.h.in +0 -772
  260. data/ext/libarchive-2.8.4/configure +0 -17916
  261. data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
  262. data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
  263. data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
  264. data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
  265. data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
  266. data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
  267. data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
  268. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
  269. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
  270. data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
  271. data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
  272. data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
  273. data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
  274. data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
  275. data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
  276. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
  277. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
  278. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
  279. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
  280. data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
  281. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
  282. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
  283. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
  284. data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
  285. data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
  286. data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
  287. data/ext/zlib-1.2.5/Makefile.in +0 -257
  288. data/ext/zlib-1.2.5/configure +0 -596
  289. data/ext/zlib-1.2.5/crc32.c +0 -442
  290. data/ext/zlib-1.2.5/crc32.h +0 -441
  291. data/ext/zlib-1.2.5/example.c +0 -565
  292. data/ext/zlib-1.2.5/gzread.c +0 -653
  293. data/ext/zlib-1.2.5/gzwrite.c +0 -531
  294. data/ext/zlib-1.2.5/minigzip.c +0 -440
  295. data/ext/zlib-1.2.5/uncompr.c +0 -59
@@ -0,0 +1,696 @@
1
+ #! /bin/sh
2
+ #
3
+ # NOTE: This file was brought from
4
+ # http://git.savannah.gnu.org/cgit/gnulib.git/plain/build-aux/config.rpath
5
+ # You should sometimes check if the file is updated and bring it to
6
+ # our trunk and copy this note to the top of that file.
7
+ #
8
+ # Output a system dependent set of variables, describing how to set the
9
+ # run time search path of shared libraries in an executable.
10
+ #
11
+ # Copyright 1996-2011 Free Software Foundation, Inc.
12
+ # Taken from GNU libtool, 2001
13
+ # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
14
+ #
15
+ # This file is free software; the Free Software Foundation gives
16
+ # unlimited permission to copy and/or distribute it, with or without
17
+ # modifications, as long as this notice is preserved.
18
+ #
19
+ # The first argument passed to this file is the canonical host specification,
20
+ # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
21
+ # or
22
+ # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
23
+ # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
24
+ # should be set by the caller.
25
+ #
26
+ # The set of defined variables is at the end of this script.
27
+
28
+ # Known limitations:
29
+ # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
30
+ # than 256 bytes, otherwise the compiler driver will dump core. The only
31
+ # known workaround is to choose shorter directory names for the build
32
+ # directory and/or the installation directory.
33
+
34
+ # All known linkers require a `.a' archive for static linking (except MSVC,
35
+ # which needs '.lib').
36
+ libext=a
37
+ shrext=.so
38
+
39
+ host="$1"
40
+ host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
41
+ host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
42
+ host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
43
+
44
+ # Code taken from libtool.m4's _LT_CC_BASENAME.
45
+
46
+ for cc_temp in $CC""; do
47
+ case $cc_temp in
48
+ compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
49
+ distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
50
+ \-*) ;;
51
+ *) break;;
52
+ esac
53
+ done
54
+ cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
55
+
56
+ # Code taken from libtool.m4's _LT_COMPILER_PIC.
57
+
58
+ wl=
59
+ if test "$GCC" = yes; then
60
+ wl='-Wl,'
61
+ else
62
+ case "$host_os" in
63
+ aix*)
64
+ wl='-Wl,'
65
+ ;;
66
+ mingw* | cygwin* | msys* | pw32* | os2* | cegcc*)
67
+ ;;
68
+ hpux9* | hpux10* | hpux11*)
69
+ wl='-Wl,'
70
+ ;;
71
+ irix5* | irix6* | nonstopux*)
72
+ wl='-Wl,'
73
+ ;;
74
+ linux* | k*bsd*-gnu | kopensolaris*-gnu)
75
+ case $cc_basename in
76
+ ecc*)
77
+ wl='-Wl,'
78
+ ;;
79
+ icc* | ifort*)
80
+ wl='-Wl,'
81
+ ;;
82
+ lf95*)
83
+ wl='-Wl,'
84
+ ;;
85
+ nagfor*)
86
+ wl='-Wl,-Wl,,'
87
+ ;;
88
+ pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
89
+ wl='-Wl,'
90
+ ;;
91
+ ccc*)
92
+ wl='-Wl,'
93
+ ;;
94
+ xl* | bgxl* | bgf* | mpixl*)
95
+ wl='-Wl,'
96
+ ;;
97
+ como)
98
+ wl='-lopt='
99
+ ;;
100
+ *)
101
+ case `$CC -V 2>&1 | sed 5q` in
102
+ *Sun\ F* | *Sun*Fortran*)
103
+ wl=
104
+ ;;
105
+ *Sun\ C*)
106
+ wl='-Wl,'
107
+ ;;
108
+ esac
109
+ ;;
110
+ esac
111
+ ;;
112
+ newsos6)
113
+ ;;
114
+ *nto* | *qnx*)
115
+ ;;
116
+ osf3* | osf4* | osf5*)
117
+ wl='-Wl,'
118
+ ;;
119
+ rdos*)
120
+ ;;
121
+ solaris*)
122
+ case $cc_basename in
123
+ f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
124
+ wl='-Qoption ld '
125
+ ;;
126
+ *)
127
+ wl='-Wl,'
128
+ ;;
129
+ esac
130
+ ;;
131
+ sunos4*)
132
+ wl='-Qoption ld '
133
+ ;;
134
+ sysv4 | sysv4.2uw2* | sysv4.3*)
135
+ wl='-Wl,'
136
+ ;;
137
+ sysv4*MP*)
138
+ ;;
139
+ sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
140
+ wl='-Wl,'
141
+ ;;
142
+ unicos*)
143
+ wl='-Wl,'
144
+ ;;
145
+ uts4*)
146
+ ;;
147
+ esac
148
+ fi
149
+
150
+ # Code taken from libtool.m4's _LT_LINKER_SHLIBS.
151
+
152
+ hardcode_libdir_flag_spec=
153
+ hardcode_libdir_separator=
154
+ hardcode_direct=no
155
+ hardcode_minus_L=no
156
+
157
+ case "$host_os" in
158
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
159
+ # FIXME: the MSVC++ port hasn't been tested in a loooong time
160
+ # When not using gcc, we currently assume that we are using
161
+ # Microsoft Visual C++.
162
+ if test "$GCC" != yes; then
163
+ with_gnu_ld=no
164
+ fi
165
+ ;;
166
+ interix*)
167
+ # we just hope/assume this is gcc and not c89 (= MSVC++)
168
+ with_gnu_ld=yes
169
+ ;;
170
+ openbsd*)
171
+ with_gnu_ld=no
172
+ ;;
173
+ esac
174
+
175
+ ld_shlibs=yes
176
+ if test "$with_gnu_ld" = yes; then
177
+ # Set some defaults for GNU ld with shared library support. These
178
+ # are reset later if shared libraries are not supported. Putting them
179
+ # here allows them to be overridden if necessary.
180
+ # Unlike libtool, we use -rpath here, not --rpath, since the documented
181
+ # option of GNU ld is called -rpath, not --rpath.
182
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
183
+ case "$host_os" in
184
+ aix[3-9]*)
185
+ # On AIX/PPC, the GNU linker is very broken
186
+ if test "$host_cpu" != ia64; then
187
+ ld_shlibs=no
188
+ fi
189
+ ;;
190
+ amigaos*)
191
+ case "$host_cpu" in
192
+ powerpc)
193
+ ;;
194
+ m68k)
195
+ hardcode_libdir_flag_spec='-L$libdir'
196
+ hardcode_minus_L=yes
197
+ ;;
198
+ esac
199
+ ;;
200
+ beos*)
201
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
202
+ :
203
+ else
204
+ ld_shlibs=no
205
+ fi
206
+ ;;
207
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
208
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
209
+ # no search path for DLLs.
210
+ hardcode_libdir_flag_spec='-L$libdir'
211
+ if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
212
+ :
213
+ else
214
+ ld_shlibs=no
215
+ fi
216
+ ;;
217
+ haiku*)
218
+ ;;
219
+ interix[3-9]*)
220
+ hardcode_direct=no
221
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
222
+ ;;
223
+ gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
224
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
225
+ :
226
+ else
227
+ ld_shlibs=no
228
+ fi
229
+ ;;
230
+ netbsd*)
231
+ ;;
232
+ solaris*)
233
+ if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
234
+ ld_shlibs=no
235
+ elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
236
+ :
237
+ else
238
+ ld_shlibs=no
239
+ fi
240
+ ;;
241
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
242
+ case `$LD -v 2>&1` in
243
+ *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
244
+ ld_shlibs=no
245
+ ;;
246
+ *)
247
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
248
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
249
+ else
250
+ ld_shlibs=no
251
+ fi
252
+ ;;
253
+ esac
254
+ ;;
255
+ sunos4*)
256
+ hardcode_direct=yes
257
+ ;;
258
+ *)
259
+ if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
260
+ :
261
+ else
262
+ ld_shlibs=no
263
+ fi
264
+ ;;
265
+ esac
266
+ if test "$ld_shlibs" = no; then
267
+ hardcode_libdir_flag_spec=
268
+ fi
269
+ else
270
+ case "$host_os" in
271
+ aix3*)
272
+ # Note: this linker hardcodes the directories in LIBPATH if there
273
+ # are no directories specified by -L.
274
+ hardcode_minus_L=yes
275
+ if test "$GCC" = yes; then
276
+ # Neither direct hardcoding nor static linking is supported with a
277
+ # broken collect2.
278
+ hardcode_direct=unsupported
279
+ fi
280
+ ;;
281
+ aix[4-9]*)
282
+ if test "$host_cpu" = ia64; then
283
+ # On IA64, the linker does run time linking by default, so we don't
284
+ # have to do anything special.
285
+ aix_use_runtimelinking=no
286
+ else
287
+ aix_use_runtimelinking=no
288
+ # Test if we are trying to use run time linking or normal
289
+ # AIX style linking. If -brtl is somewhere in LDFLAGS, we
290
+ # need to do runtime linking.
291
+ case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
292
+ for ld_flag in $LDFLAGS; do
293
+ if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
294
+ aix_use_runtimelinking=yes
295
+ break
296
+ fi
297
+ done
298
+ ;;
299
+ esac
300
+ fi
301
+ hardcode_direct=yes
302
+ hardcode_libdir_separator=':'
303
+ if test "$GCC" = yes; then
304
+ case $host_os in aix4.[012]|aix4.[012].*)
305
+ collect2name=`${CC} -print-prog-name=collect2`
306
+ if test -f "$collect2name" && \
307
+ strings "$collect2name" | grep resolve_lib_name >/dev/null
308
+ then
309
+ # We have reworked collect2
310
+ :
311
+ else
312
+ # We have old collect2
313
+ hardcode_direct=unsupported
314
+ hardcode_minus_L=yes
315
+ hardcode_libdir_flag_spec='-L$libdir'
316
+ hardcode_libdir_separator=
317
+ fi
318
+ ;;
319
+ esac
320
+ fi
321
+ # Begin _LT_AC_SYS_LIBPATH_AIX.
322
+ echo 'int main () { return 0; }' > conftest.c
323
+ ${CC} ${LDFLAGS} conftest.c -o conftest
324
+ aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
325
+ }'`
326
+ if test -z "$aix_libpath"; then
327
+ aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
328
+ }'`
329
+ fi
330
+ if test -z "$aix_libpath"; then
331
+ aix_libpath="/usr/lib:/lib"
332
+ fi
333
+ rm -f conftest.c conftest
334
+ # End _LT_AC_SYS_LIBPATH_AIX.
335
+ if test "$aix_use_runtimelinking" = yes; then
336
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
337
+ else
338
+ if test "$host_cpu" = ia64; then
339
+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
340
+ else
341
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
342
+ fi
343
+ fi
344
+ ;;
345
+ amigaos*)
346
+ case "$host_cpu" in
347
+ powerpc)
348
+ ;;
349
+ m68k)
350
+ hardcode_libdir_flag_spec='-L$libdir'
351
+ hardcode_minus_L=yes
352
+ ;;
353
+ esac
354
+ ;;
355
+ bsdi[45]*)
356
+ ;;
357
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
358
+ # When not using gcc, we currently assume that we are using
359
+ # Microsoft Visual C++.
360
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
361
+ # no search path for DLLs.
362
+ hardcode_libdir_flag_spec=' '
363
+ libext=lib
364
+ ;;
365
+ darwin* | rhapsody*)
366
+ hardcode_direct=no
367
+ if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then
368
+ :
369
+ else
370
+ ld_shlibs=no
371
+ fi
372
+ ;;
373
+ dgux*)
374
+ hardcode_libdir_flag_spec='-L$libdir'
375
+ ;;
376
+ freebsd2.2*)
377
+ hardcode_libdir_flag_spec='-R$libdir'
378
+ hardcode_direct=yes
379
+ ;;
380
+ freebsd2*)
381
+ hardcode_direct=yes
382
+ hardcode_minus_L=yes
383
+ ;;
384
+ freebsd* | dragonfly*)
385
+ hardcode_libdir_flag_spec='-R$libdir'
386
+ hardcode_direct=yes
387
+ ;;
388
+ hpux9*)
389
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
390
+ hardcode_libdir_separator=:
391
+ hardcode_direct=yes
392
+ # hardcode_minus_L: Not really in the search PATH,
393
+ # but as the default location of the library.
394
+ hardcode_minus_L=yes
395
+ ;;
396
+ hpux10*)
397
+ if test "$with_gnu_ld" = no; then
398
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
399
+ hardcode_libdir_separator=:
400
+ hardcode_direct=yes
401
+ # hardcode_minus_L: Not really in the search PATH,
402
+ # but as the default location of the library.
403
+ hardcode_minus_L=yes
404
+ fi
405
+ ;;
406
+ hpux11*)
407
+ if test "$with_gnu_ld" = no; then
408
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
409
+ hardcode_libdir_separator=:
410
+ case $host_cpu in
411
+ hppa*64*|ia64*)
412
+ hardcode_direct=no
413
+ ;;
414
+ *)
415
+ hardcode_direct=yes
416
+ # hardcode_minus_L: Not really in the search PATH,
417
+ # but as the default location of the library.
418
+ hardcode_minus_L=yes
419
+ ;;
420
+ esac
421
+ fi
422
+ ;;
423
+ irix5* | irix6* | nonstopux*)
424
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
425
+ hardcode_libdir_separator=:
426
+ ;;
427
+ netbsd*)
428
+ hardcode_libdir_flag_spec='-R$libdir'
429
+ hardcode_direct=yes
430
+ ;;
431
+ newsos6)
432
+ hardcode_direct=yes
433
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
434
+ hardcode_libdir_separator=:
435
+ ;;
436
+ *nto* | *qnx*)
437
+ ;;
438
+ openbsd*)
439
+ if test -f /usr/libexec/ld.so; then
440
+ hardcode_direct=yes
441
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
442
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
443
+ else
444
+ case "$host_os" in
445
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
446
+ hardcode_libdir_flag_spec='-R$libdir'
447
+ ;;
448
+ *)
449
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
450
+ ;;
451
+ esac
452
+ fi
453
+ else
454
+ ld_shlibs=no
455
+ fi
456
+ ;;
457
+ os2*)
458
+ hardcode_libdir_flag_spec='-L$libdir'
459
+ hardcode_minus_L=yes
460
+ ;;
461
+ osf3*)
462
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
463
+ hardcode_libdir_separator=:
464
+ ;;
465
+ osf4* | osf5*)
466
+ if test "$GCC" = yes; then
467
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
468
+ else
469
+ # Both cc and cxx compiler support -rpath directly
470
+ hardcode_libdir_flag_spec='-rpath $libdir'
471
+ fi
472
+ hardcode_libdir_separator=:
473
+ ;;
474
+ solaris*)
475
+ hardcode_libdir_flag_spec='-R$libdir'
476
+ ;;
477
+ sunos4*)
478
+ hardcode_libdir_flag_spec='-L$libdir'
479
+ hardcode_direct=yes
480
+ hardcode_minus_L=yes
481
+ ;;
482
+ sysv4)
483
+ case $host_vendor in
484
+ sni)
485
+ hardcode_direct=yes # is this really true???
486
+ ;;
487
+ siemens)
488
+ hardcode_direct=no
489
+ ;;
490
+ motorola)
491
+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie
492
+ ;;
493
+ esac
494
+ ;;
495
+ sysv4.3*)
496
+ ;;
497
+ sysv4*MP*)
498
+ if test -d /usr/nec; then
499
+ ld_shlibs=yes
500
+ fi
501
+ ;;
502
+ sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
503
+ ;;
504
+ sysv5* | sco3.2v5* | sco5v6*)
505
+ hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
506
+ hardcode_libdir_separator=':'
507
+ ;;
508
+ uts4*)
509
+ hardcode_libdir_flag_spec='-L$libdir'
510
+ ;;
511
+ *)
512
+ ld_shlibs=no
513
+ ;;
514
+ esac
515
+ fi
516
+
517
+ # Check dynamic linker characteristics
518
+ # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.
519
+ # Unlike libtool.m4, here we don't care about _all_ names of the library, but
520
+ # only about the one the linker finds when passed -lNAME. This is the last
521
+ # element of library_names_spec in libtool.m4, or possibly two of them if the
522
+ # linker has special search rules.
523
+ library_names_spec= # the last element of library_names_spec in libtool.m4
524
+ libname_spec='lib$name'
525
+ case "$host_os" in
526
+ aix3*)
527
+ library_names_spec='$libname.a'
528
+ ;;
529
+ aix[4-9]*)
530
+ library_names_spec='$libname$shrext'
531
+ ;;
532
+ amigaos*)
533
+ case "$host_cpu" in
534
+ powerpc*)
535
+ library_names_spec='$libname$shrext' ;;
536
+ m68k)
537
+ library_names_spec='$libname.a' ;;
538
+ esac
539
+ ;;
540
+ beos*)
541
+ library_names_spec='$libname$shrext'
542
+ ;;
543
+ bsdi[45]*)
544
+ library_names_spec='$libname$shrext'
545
+ ;;
546
+ cygwin* | msys* | mingw* | pw32* | cegcc*)
547
+ shrext=.dll
548
+ library_names_spec='$libname.dll.a $libname.lib'
549
+ ;;
550
+ darwin* | rhapsody*)
551
+ shrext=.dylib
552
+ library_names_spec='$libname$shrext'
553
+ ;;
554
+ dgux*)
555
+ library_names_spec='$libname$shrext'
556
+ ;;
557
+ freebsd* | dragonfly*)
558
+ case "$host_os" in
559
+ freebsd[123]*)
560
+ library_names_spec='$libname$shrext$versuffix' ;;
561
+ *)
562
+ library_names_spec='$libname$shrext' ;;
563
+ esac
564
+ ;;
565
+ gnu*)
566
+ library_names_spec='$libname$shrext'
567
+ ;;
568
+ haiku*)
569
+ library_names_spec='$libname$shrext'
570
+ ;;
571
+ hpux9* | hpux10* | hpux11*)
572
+ case $host_cpu in
573
+ ia64*)
574
+ shrext=.so
575
+ ;;
576
+ hppa*64*)
577
+ shrext=.sl
578
+ ;;
579
+ *)
580
+ shrext=.sl
581
+ ;;
582
+ esac
583
+ library_names_spec='$libname$shrext'
584
+ ;;
585
+ interix[3-9]*)
586
+ library_names_spec='$libname$shrext'
587
+ ;;
588
+ irix5* | irix6* | nonstopux*)
589
+ library_names_spec='$libname$shrext'
590
+ case "$host_os" in
591
+ irix5* | nonstopux*)
592
+ libsuff= shlibsuff=
593
+ ;;
594
+ *)
595
+ case $LD in
596
+ *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
597
+ *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
598
+ *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
599
+ *) libsuff= shlibsuff= ;;
600
+ esac
601
+ ;;
602
+ esac
603
+ ;;
604
+ linux*oldld* | linux*aout* | linux*coff*)
605
+ ;;
606
+ linux* | k*bsd*-gnu | kopensolaris*-gnu)
607
+ library_names_spec='$libname$shrext'
608
+ ;;
609
+ knetbsd*-gnu)
610
+ library_names_spec='$libname$shrext'
611
+ ;;
612
+ netbsd*)
613
+ library_names_spec='$libname$shrext'
614
+ ;;
615
+ newsos6)
616
+ library_names_spec='$libname$shrext'
617
+ ;;
618
+ *nto* | *qnx*)
619
+ library_names_spec='$libname$shrext'
620
+ ;;
621
+ openbsd*)
622
+ library_names_spec='$libname$shrext$versuffix'
623
+ ;;
624
+ os2*)
625
+ libname_spec='$name'
626
+ shrext=.dll
627
+ library_names_spec='$libname.a'
628
+ ;;
629
+ osf3* | osf4* | osf5*)
630
+ library_names_spec='$libname$shrext'
631
+ ;;
632
+ rdos*)
633
+ ;;
634
+ solaris*)
635
+ library_names_spec='$libname$shrext'
636
+ ;;
637
+ sunos4*)
638
+ library_names_spec='$libname$shrext$versuffix'
639
+ ;;
640
+ sysv4 | sysv4.3*)
641
+ library_names_spec='$libname$shrext'
642
+ ;;
643
+ sysv4*MP*)
644
+ library_names_spec='$libname$shrext'
645
+ ;;
646
+ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
647
+ library_names_spec='$libname$shrext'
648
+ ;;
649
+ tpf*)
650
+ library_names_spec='$libname$shrext'
651
+ ;;
652
+ uts4*)
653
+ library_names_spec='$libname$shrext'
654
+ ;;
655
+ esac
656
+
657
+ sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
658
+ escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
659
+ shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
660
+ escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
661
+ escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
662
+ escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
663
+
664
+ LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
665
+
666
+ # How to pass a linker flag through the compiler.
667
+ wl="$escaped_wl"
668
+
669
+ # Static library suffix (normally "a").
670
+ libext="$libext"
671
+
672
+ # Shared library suffix (normally "so").
673
+ shlibext="$shlibext"
674
+
675
+ # Format of library name prefix.
676
+ libname_spec="$escaped_libname_spec"
677
+
678
+ # Library names that the linker finds when passed -lNAME.
679
+ library_names_spec="$escaped_library_names_spec"
680
+
681
+ # Flag to hardcode \$libdir into a binary during linking.
682
+ # This must work even if \$libdir does not exist.
683
+ hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
684
+
685
+ # Whether we need a single -rpath flag with a separated argument.
686
+ hardcode_libdir_separator="$hardcode_libdir_separator"
687
+
688
+ # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
689
+ # resulting binary.
690
+ hardcode_direct="$hardcode_direct"
691
+
692
+ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
693
+ # resulting binary.
694
+ hardcode_minus_L="$hardcode_minus_L"
695
+
696
+ EOF