diff options
author | mm <mm@FreeBSD.org> | 2012-02-25 10:58:02 +0000 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2012-02-25 10:58:02 +0000 |
commit | 6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f (patch) | |
tree | 117e869a99c6fa7f789c6d9a87cf7eac26ae69e3 /lib/libarchive/Makefile | |
parent | 87f7f0cfe8d3d17bc154ca2c0dcd51bca1444006 (diff) | |
parent | 2f6e434fe4c652da1969314fa57ae21936cec85d (diff) | |
download | FreeBSD-src-6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f.zip FreeBSD-src-6132589d7bb05bbf0c9033cc9f5cf79bafdc0b0f.tar.gz |
Update libarchive to 3.0.3
Some of new features:
- New readers: RAR, LHA/LZH, CAB reader, 7-Zip
- New writers: ISO9660, XAR
- Improvements to many formats, especially including ISO9660 and Zip
- Stackable write filters to write, e.g., tar.gz.uu in a single pass
- Exploit seekable input; new "seekable" Zip reader can exploit the Zip
Central Directory when it's available; the old "streamable" Zip reader
is still fully supported for cases where seeking is not possible.
Full release notes available at:
https://github.com/libarchive/libarchive/wiki/ReleaseNotes
Diffstat (limited to 'lib/libarchive/Makefile')
-rw-r--r-- | lib/libarchive/Makefile | 413 |
1 files changed, 265 insertions, 148 deletions
diff --git a/lib/libarchive/Makefile b/lib/libarchive/Makefile index 92ca954..bbe18d6 100644 --- a/lib/libarchive/Makefile +++ b/lib/libarchive/Makefile @@ -20,7 +20,7 @@ LDADD+= -lbsdxml # FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system. # It has no real relation to the libarchive version number. -SHLIB_MAJOR= 5 +SHLIB_MAJOR= 6 CFLAGS+= -DPLATFORM_CONFIG_H=\"${.CURDIR}/config_freebsd.h\" CFLAGS+= -I${.OBJDIR} @@ -34,44 +34,68 @@ DPADD+= ${LIBMD} LDADD+= -lmd .endif +.if ${MK_ICONV} != "no" +CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const +.endif + +.if ${MACHINE_ARCH:Marm*} != "" || ${MACHINE_ARCH:Mmips*} != "" || \ + ${MACHINE_ARCH:Msparc64*} != "" || ${MACHINE_ARCH:Mia64*} != "" +NO_WCAST_ALIGN= yes +.if ${MACHINE_ARCH:M*64*} == "" +CFLAGS+= -DPPMD_32BIT +.endif +.endif + .PATH: ${LIBARCHIVEDIR}/libarchive # Headers to be installed in /usr/include INCS= archive.h archive_entry.h # Sources to be compiled. -SRCS= archive_check_magic.c \ +SRCS= archive_acl.c \ + archive_check_magic.c \ + archive_crypto.c \ archive_entry.c \ archive_entry_copy_stat.c \ + archive_entry_link_resolver.c \ + archive_entry_sparse.c \ archive_entry_stat.c \ archive_entry_strmode.c \ - archive_entry_link_resolver.c \ archive_entry_xattr.c \ + archive_options.c \ + archive_ppmd7.c \ + archive_rb.c \ archive_read.c \ archive_read_data_into_fd.c \ - archive_read_disk.c \ archive_read_disk_entry_from_file.c \ + archive_read_disk_posix.c \ archive_read_disk_set_standard_lookup.c \ archive_read_extract.c \ archive_read_open_fd.c \ archive_read_open_file.c \ archive_read_open_filename.c \ archive_read_open_memory.c \ - archive_read_support_compression_all.c \ - archive_read_support_compression_bzip2.c \ - archive_read_support_compression_compress.c \ - archive_read_support_compression_gzip.c \ - archive_read_support_compression_none.c \ - archive_read_support_compression_program.c \ - archive_read_support_compression_rpm.c \ - archive_read_support_compression_uu.c \ - archive_read_support_compression_xz.c \ + archive_read_set_options.c \ + archive_read_support_filter_all.c \ + archive_read_support_filter_bzip2.c \ + archive_read_support_filter_compress.c \ + archive_read_support_filter_gzip.c \ + archive_read_support_filter_none.c \ + archive_read_support_filter_program.c \ + archive_read_support_filter_rpm.c \ + archive_read_support_filter_uu.c \ + archive_read_support_filter_xz.c \ + archive_read_support_format_7zip.c \ archive_read_support_format_all.c \ archive_read_support_format_ar.c \ + archive_read_support_format_by_code.c \ + archive_read_support_format_cab.c \ archive_read_support_format_cpio.c \ archive_read_support_format_empty.c \ archive_read_support_format_iso9660.c \ + archive_read_support_format_lha.c \ archive_read_support_format_mtree.c \ + archive_read_support_format_rar.c \ archive_read_support_format_raw.c \ archive_read_support_format_tar.c \ archive_read_support_format_xar.c \ @@ -81,150 +105,231 @@ SRCS= archive_check_magic.c \ archive_util.c \ archive_virtual.c \ archive_write.c \ - archive_write_disk.c \ archive_write_disk_set_standard_lookup.c \ + archive_write_disk_posix.c \ archive_write_open_fd.c \ archive_write_open_file.c \ archive_write_open_filename.c \ archive_write_open_memory.c \ - archive_write_set_compression_bzip2.c \ - archive_write_set_compression_compress.c \ - archive_write_set_compression_gzip.c \ - archive_write_set_compression_none.c \ - archive_write_set_compression_program.c \ - archive_write_set_compression_xz.c \ + archive_write_add_filter_bzip2.c \ + archive_write_add_filter_compress.c \ + archive_write_add_filter_gzip.c \ + archive_write_add_filter_none.c \ + archive_write_add_filter_program.c \ + archive_write_add_filter_xz.c \ archive_write_set_format.c \ + archive_write_set_format_7zip.c \ archive_write_set_format_ar.c \ archive_write_set_format_by_name.c \ archive_write_set_format_cpio.c \ archive_write_set_format_cpio_newc.c \ + archive_write_set_format_gnutar.c \ + archive_write_set_format_iso9660.c \ archive_write_set_format_mtree.c \ archive_write_set_format_pax.c \ archive_write_set_format_shar.c \ archive_write_set_format_ustar.c \ + archive_write_set_format_xar.c \ archive_write_set_format_zip.c \ + archive_write_set_options.c \ filter_fork.c # Man pages to be installed. MAN= archive_entry.3 \ + archive_entry_acl.3 \ + archive_entry_linkify.3 \ + archive_entry_paths.3 \ + archive_entry_perms.3 \ + archive_entry_stat.3 \ + archive_entry_time.3 \ archive_read.3 \ + archive_read_data.3 \ archive_read_disk.3 \ + archive_read_extract.3 \ + archive_read_filter.3 \ + archive_read_format.3 \ + archive_read_free.3 \ + archive_read_header.3 \ + archive_read_new.3 \ + archive_read_open.3 \ + archive_read_set_options.3 \ archive_util.3 \ archive_write.3 \ + archive_write_blocksize.3 \ + archive_write_data.3 \ archive_write_disk.3 \ + archive_write_filter.3 \ + archive_write_finish_entry.3 \ + archive_write_format.3 \ + archive_write_free.3 \ + archive_write_header.3 \ + archive_write_new.3 \ + archive_write_open.3 \ + archive_write_set_options.3 \ cpio.5 \ libarchive.3 \ + libarchive_internals.3 \ libarchive-formats.5 \ tar.5 # Symlink the man pages under each function name. -MLINKS+= archive_entry.3 archive_entry_acl_add_entry.3 -MLINKS+= archive_entry.3 archive_entry_acl_add_entry_w.3 -MLINKS+= archive_entry.3 archive_entry_acl_clear.3 -MLINKS+= archive_entry.3 archive_entry_acl_count.3 -MLINKS+= archive_entry.3 archive_entry_acl_next.3 -MLINKS+= archive_entry.3 archive_entry_acl_next_w.3 -MLINKS+= archive_entry.3 archive_entry_acl_reset.3 -MLINKS+= archive_entry.3 archive_entry_acl_text_w.3 MLINKS+= archive_entry.3 archive_entry_clear.3 MLINKS+= archive_entry.3 archive_entry_clone.3 -MLINKS+= archive_entry.3 archive_entry_copy_fflags_text.3 -MLINKS+= archive_entry.3 archive_entry_copy_fflags_text_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_gname.3 -MLINKS+= archive_entry.3 archive_entry_copy_gname_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_hardlink_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_link.3 -MLINKS+= archive_entry.3 archive_entry_copy_link_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_pathname_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_stat.3 -MLINKS+= archive_entry.3 archive_entry_copy_symlink_w.3 -MLINKS+= archive_entry.3 archive_entry_copy_uname.3 -MLINKS+= archive_entry.3 archive_entry_copy_uname_w.3 -MLINKS+= archive_entry.3 archive_entry_dev.3 -MLINKS+= archive_entry.3 archive_entry_devmajor.3 -MLINKS+= archive_entry.3 archive_entry_devminor.3 -MLINKS+= archive_entry.3 archive_entry_filetype.3 -MLINKS+= archive_entry.3 archive_entry_fflags.3 -MLINKS+= archive_entry.3 archive_entry_fflags_text.3 MLINKS+= archive_entry.3 archive_entry_free.3 -MLINKS+= archive_entry.3 archive_entry_gid.3 -MLINKS+= archive_entry.3 archive_entry_gname.3 -MLINKS+= archive_entry.3 archive_entry_gname_w.3 -MLINKS+= archive_entry.3 archive_entry_hardlink.3 -MLINKS+= archive_entry.3 archive_entry_ino.3 -MLINKS+= archive_entry.3 archive_entry_mode.3 -MLINKS+= archive_entry.3 archive_entry_mtime.3 -MLINKS+= archive_entry.3 archive_entry_mtime_nsec.3 -MLINKS+= archive_entry.3 archive_entry_nlink.3 MLINKS+= archive_entry.3 archive_entry_new.3 -MLINKS+= archive_entry.3 archive_entry_pathname.3 -MLINKS+= archive_entry.3 archive_entry_pathname_w.3 -MLINKS+= archive_entry.3 archive_entry_rdev.3 -MLINKS+= archive_entry.3 archive_entry_rdevmajor.3 -MLINKS+= archive_entry.3 archive_entry_rdevminor.3 -MLINKS+= archive_entry.3 archive_entry_set_atime.3 -MLINKS+= archive_entry.3 archive_entry_set_ctime.3 -MLINKS+= archive_entry.3 archive_entry_set_dev.3 -MLINKS+= archive_entry.3 archive_entry_set_devmajor.3 -MLINKS+= archive_entry.3 archive_entry_set_devminor.3 -MLINKS+= archive_entry.3 archive_entry_set_fflags.3 -MLINKS+= archive_entry.3 archive_entry_set_gid.3 -MLINKS+= archive_entry.3 archive_entry_set_gname.3 -MLINKS+= archive_entry.3 archive_entry_set_hardlink.3 -MLINKS+= archive_entry.3 archive_entry_set_link.3 -MLINKS+= archive_entry.3 archive_entry_set_mode.3 -MLINKS+= archive_entry.3 archive_entry_set_mtime.3 -MLINKS+= archive_entry.3 archive_entry_set_nlink.3 -MLINKS+= archive_entry.3 archive_entry_set_pathname.3 -MLINKS+= archive_entry.3 archive_entry_set_rdev.3 -MLINKS+= archive_entry.3 archive_entry_set_rdevmajor.3 -MLINKS+= archive_entry.3 archive_entry_set_rdevminor.3 -MLINKS+= archive_entry.3 archive_entry_set_size.3 -MLINKS+= archive_entry.3 archive_entry_set_symlink.3 -MLINKS+= archive_entry.3 archive_entry_set_uid.3 -MLINKS+= archive_entry.3 archive_entry_set_uname.3 -MLINKS+= archive_entry.3 archive_entry_size.3 -MLINKS+= archive_entry.3 archive_entry_stat.3 -MLINKS+= archive_entry.3 archive_entry_symlink.3 -MLINKS+= archive_entry.3 archive_entry_uid.3 -MLINKS+= archive_entry.3 archive_entry_uname.3 -MLINKS+= archive_entry.3 archive_entry_uname_w.3 -MLINKS+= archive_read.3 archive_read_data.3 -MLINKS+= archive_read.3 archive_read_data_block.3 -MLINKS+= archive_read.3 archive_read_data_into_buffer.3 -MLINKS+= archive_read.3 archive_read_data_into_fd.3 -MLINKS+= archive_read.3 archive_read_data_skip.3 -MLINKS+= archive_read.3 archive_read_extract.3 -MLINKS+= archive_read.3 archive_read_extract_set_progress_callback.3 -MLINKS+= archive_read.3 archive_read_extract_set_skip_file.3 -MLINKS+= archive_read.3 archive_read_finish.3 -MLINKS+= archive_read.3 archive_read_new.3 -MLINKS+= archive_read.3 archive_read_next_header.3 -MLINKS+= archive_read.3 archive_read_next_header2.3 -MLINKS+= archive_read.3 archive_read_open.3 -MLINKS+= archive_read.3 archive_read_open2.3 -MLINKS+= archive_read.3 archive_read_open_FILE.3 -MLINKS+= archive_read.3 archive_read_open_fd.3 -MLINKS+= archive_read.3 archive_read_open_file.3 -MLINKS+= archive_read.3 archive_read_open_filename.3 -MLINKS+= archive_read.3 archive_read_open_memory.3 -MLINKS+= archive_read.3 archive_read_support_compression_all.3 -MLINKS+= archive_read.3 archive_read_support_compression_bzip2.3 -MLINKS+= archive_read.3 archive_read_support_compression_compress.3 -MLINKS+= archive_read.3 archive_read_support_compression_gzip.3 -MLINKS+= archive_read.3 archive_read_support_compression_lzma.3 -MLINKS+= archive_read.3 archive_read_support_compression_none.3 -MLINKS+= archive_read.3 archive_read_support_compression_program.3 -MLINKS+= archive_read.3 archive_read_support_compression_program_signature.3 -MLINKS+= archive_read.3 archive_read_support_compression_xz.3 -MLINKS+= archive_read.3 archive_read_support_format_all.3 -MLINKS+= archive_read.3 archive_read_support_format_ar.3 -MLINKS+= archive_read.3 archive_read_support_format_cpio.3 -MLINKS+= archive_read.3 archive_read_support_format_empty.3 -MLINKS+= archive_read.3 archive_read_support_format_iso9660.3 -MLINKS+= archive_read.3 archive_read_support_format_raw.3 -MLINKS+= archive_read.3 archive_read_support_format_tar.3 -MLINKS+= archive_read.3 archive_read_support_format_zip.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_add_entry.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_add_entry_w.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_clear.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_count.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_next.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_next_w.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_reset.3 +MLINKS+= archive_entry_acl.3 archive_entry_acl_text_w.3 +MLINKS+= archive_entry_linkify.3 archive_entry_linkresolver.3 +MLINKS+= archive_entry_linkify.3 archive_entry_linkresolver_new.3 +MLINKS+= archive_entry_linkify.3 archive_entry_linkresolver_set_strategy.3 +MLINKS+= archive_entry_linkify.3 archive_entry_linkresolver_free.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_hardlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_hardlink_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_link.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_link_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_pathname.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_pathname_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_sourcepath.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_symlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_copy_symlink_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_hardlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_hardlink_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_pathname.3 +MLINKS+= archive_entry_paths.3 archive_entry_pathname_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_set_hardlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_set_link.3 +MLINKS+= archive_entry_paths.3 archive_entry_set_pathname.3 +MLINKS+= archive_entry_paths.3 archive_entry_set_symlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_symlink.3 +MLINKS+= archive_entry_paths.3 archive_entry_symlink_w.3 +MLINKS+= archive_entry_paths.3 archive_entry_update_symlink_utf8.3 +MLINKS+= archive_entry_paths.3 archive_entry_update_hardlink_utf8.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_fflags_text.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_fflags_text_w.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_gname.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_gname_w.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_uname.3 +MLINKS+= archive_entry_perms.3 archive_entry_copy_uname_w.3 +MLINKS+= archive_entry_perms.3 archive_entry_fflags.3 +MLINKS+= archive_entry_perms.3 archive_entry_fflags_text.3 +MLINKS+= archive_entry_perms.3 archive_entry_gid.3 +MLINKS+= archive_entry_perms.3 archive_entry_gname.3 +MLINKS+= archive_entry_perms.3 archive_entry_gname_w.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_fflags.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_gid.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_gname.3 +MLINKS+= archive_entry_perms.3 archive_entry_perm.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_fflags.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_gid.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_gname.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_perm.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_uid.3 +MLINKS+= archive_entry_perms.3 archive_entry_set_uname.3 +MLINKS+= archive_entry_perms.3 archive_entry_strmode.3 +MLINKS+= archive_entry_perms.3 archive_entry_uid.3 +MLINKS+= archive_entry_perms.3 archive_entry_uname.3 +MLINKS+= archive_entry_perms.3 archive_entry_uname_w.3 +MLINKS+= archive_entry_perms.3 archive_entry_update_gname_utf8.3 +MLINKS+= archive_entry_perms.3 archive_entry_update_uname_utf8.3 +MLINKS+= archive_entry_stat.3 archive_entry_copy_stat.3 +MLINKS+= archive_entry_stat.3 archive_entry_dev.3 +MLINKS+= archive_entry_stat.3 archive_entry_dev_is_set.3 +MLINKS+= archive_entry_stat.3 archive_entry_devmajor.3 +MLINKS+= archive_entry_stat.3 archive_entry_devminor.3 +MLINKS+= archive_entry_stat.3 archive_entry_filetype.3 +MLINKS+= archive_entry_stat.3 archive_entry_ino.3 +MLINKS+= archive_entry_stat.3 archive_entry_ino64.3 +MLINKS+= archive_entry_stat.3 archive_entry_ino_is_set.3 +MLINKS+= archive_entry_stat.3 archive_entry_mode.3 +MLINKS+= archive_entry_stat.3 archive_entry_nlink.3 +MLINKS+= archive_entry_stat.3 archive_entry_rdev.3 +MLINKS+= archive_entry_stat.3 archive_entry_rdevmajor.3 +MLINKS+= archive_entry_stat.3 archive_entry_rdevminor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_dev.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_devmajor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_devminor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_filetype.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_ino.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_ino64.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_mode.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdev.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdevmajor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdevminor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_size.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_nlink.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdev.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdevmajor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_rdevminor.3 +MLINKS+= archive_entry_stat.3 archive_entry_set_size.3 +MLINKS+= archive_entry_stat.3 archive_entry_size.3 +MLINKS+= archive_entry_stat.3 archive_entry_size_is_set.3 +MLINKS+= archive_entry_stat.3 archive_entry_unset_size.3 +MLINKS+= archive_entry_time.3 archive_entry_atime.3 +MLINKS+= archive_entry_time.3 archive_entry_atime_is_set.3 +MLINKS+= archive_entry_time.3 archive_entry_atime_nsec.3 +MLINKS+= archive_entry_time.3 archive_entry_birthtime.3 +MLINKS+= archive_entry_time.3 archive_entry_birthtime_is_set.3 +MLINKS+= archive_entry_time.3 archive_entry_birthtime_nsec.3 +MLINKS+= archive_entry_time.3 archive_entry_ctime.3 +MLINKS+= archive_entry_time.3 archive_entry_ctime_is_set.3 +MLINKS+= archive_entry_time.3 archive_entry_ctime_nsec.3 +MLINKS+= archive_entry_time.3 archive_entry_mtime.3 +MLINKS+= archive_entry_time.3 archive_entry_mtime_is_set.3 +MLINKS+= archive_entry_time.3 archive_entry_mtime_nsec.3 +MLINKS+= archive_entry_time.3 archive_entry_set_atime.3 +MLINKS+= archive_entry_time.3 archive_entry_set_birthtime.3 +MLINKS+= archive_entry_time.3 archive_entry_set_ctime.3 +MLINKS+= archive_entry_time.3 archive_entry_set_mtime.3 +MLINKS+= archive_entry_time.3 archive_entry_unset_atime.3 +MLINKS+= archive_entry_time.3 archive_entry_unset_birthtime.3 +MLINKS+= archive_entry_time.3 archive_entry_unset_ctime.3 +MLINKS+= archive_entry_time.3 archive_entry_unset_mtime.3 +MLINKS+= archive_read_data.3 archive_read_data_block.3 +MLINKS+= archive_read_data.3 archive_read_data_into_fd.3 +MLINKS+= archive_read_data.3 archive_read_data_skip.3 +MLINKS+= archive_read_header.3 archive_read_next_header.3 +MLINKS+= archive_read_header.3 archive_read_next_header2.3 +MLINKS+= archive_read_extract.3 archive_read_extract2.3 +MLINKS+= archive_read_extract.3 archive_read_extract_set_progress_callback.3 +MLINKS+= archive_read_extract.3 archive_read_extract_set_skip_file.3 +MLINKS+= archive_read_open.3 archive_read_open2.3 +MLINKS+= archive_read_open.3 archive_read_open_FILE.3 +MLINKS+= archive_read_open.3 archive_read_open_fd.3 +MLINKS+= archive_read_open.3 archive_read_open_file.3 +MLINKS+= archive_read_open.3 archive_read_open_filename.3 +MLINKS+= archive_read_open.3 archive_read_open_memory.3 +MLINKS+= archive_read_free.3 archive_read_close.3 +MLINKS+= archive_read_free.3 archive_read_finish.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_all.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_bzip2.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_compress.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_gzip.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_lzma.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_none.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_xz.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_program.3 +MLINKS+= archive_read_filter.3 archive_read_support_filter_program_signature.3 +MLINKS+= archive_read_format.3 archive_read_support_format_7zip.3 +MLINKS+= archive_read_format.3 archive_read_support_format_all.3 +MLINKS+= archive_read_format.3 archive_read_support_format_ar.3 +MLINKS+= archive_read_format.3 archive_read_support_format_by_code.3 +MLINKS+= archive_read_format.3 archive_read_support_format_cab.3 +MLINKS+= archive_read_format.3 archive_read_support_format_cpio.3 +MLINKS+= archive_read_format.3 archive_read_support_format_empty.3 +MLINKS+= archive_read_format.3 archive_read_support_format_iso9660.3 +MLINKS+= archive_read_format.3 archive_read_support_format_lha.3 +MLINKS+= archive_read_format.3 archive_read_support_format_mtree.3 +MLINKS+= archive_read_format.3 archive_read_support_format_rar.3 +MLINKS+= archive_read_format.3 archive_read_support_format_raw.3 +MLINKS+= archive_read_format.3 archive_read_support_format_tar.3 +MLINKS+= archive_read_format.3 archive_read_support_format_xar.3 +MLINKS+= archive_read_format.3 archive_read_support_format_zip.3 MLINKS+= archive_read_disk.3 archive_read_disk_entry_from_file.3 MLINKS+= archive_read_disk.3 archive_read_disk_gname.3 MLINKS+= archive_read_disk.3 archive_read_disk_new.3 @@ -235,46 +340,58 @@ MLINKS+= archive_read_disk.3 archive_read_disk_set_symlink_logical.3 MLINKS+= archive_read_disk.3 archive_read_disk_set_symlink_physical.3 MLINKS+= archive_read_disk.3 archive_read_disk_set_uname_lookup.3 MLINKS+= archive_read_disk.3 archive_read_disk_uname.3 +MLINKS+= archive_read_set_options.3 archive_read_set_filter_option.3 +MLINKS+= archive_read_set_options.3 archive_read_set_format_option.3 +MLINKS+= archive_read_set_options.3 archive_read_set_option.3 MLINKS+= archive_util.3 archive_clear_error.3 MLINKS+= archive_util.3 archive_compression.3 MLINKS+= archive_util.3 archive_compression_name.3 +MLINKS+= archive_util.3 archive_copy_error.3 MLINKS+= archive_util.3 archive_errno.3 MLINKS+= archive_util.3 archive_error_string.3 MLINKS+= archive_util.3 archive_file_count.3 +MLINKS+= archive_util.3 archive_filter_code.3 +MLINKS+= archive_util.3 archive_filter_count.3 +MLINKS+= archive_util.3 archive_filter_name.3 MLINKS+= archive_util.3 archive_format.3 MLINKS+= archive_util.3 archive_format_name.3 +MLINKS+= archive_util.3 archive_position.3 MLINKS+= archive_util.3 archive_set_error.3 -MLINKS+= archive_write.3 archive_write_close.3 -MLINKS+= archive_write.3 archive_write_data.3 -MLINKS+= archive_write.3 archive_write_finish.3 -MLINKS+= archive_write.3 archive_write_finish_entry.3 -MLINKS+= archive_write.3 archive_write_get_bytes_in_last_block.3 -MLINKS+= archive_write.3 archive_write_get_bytes_per_block.3 -MLINKS+= archive_write.3 archive_write_header.3 -MLINKS+= archive_write.3 archive_write_new.3 -MLINKS+= archive_write.3 archive_write_open.3 -MLINKS+= archive_write.3 archive_write_open_FILE.3 -MLINKS+= archive_write.3 archive_write_open_fd.3 -MLINKS+= archive_write.3 archive_write_open_file.3 -MLINKS+= archive_write.3 archive_write_open_filename.3 -MLINKS+= archive_write.3 archive_write_open_memory.3 -MLINKS+= archive_write.3 archive_write_set_bytes_in_last_block.3 -MLINKS+= archive_write.3 archive_write_set_bytes_per_block.3 -MLINKS+= archive_write.3 archive_write_set_callbacks.3 -MLINKS+= archive_write.3 archive_write_set_compression_bzip2.3 -MLINKS+= archive_write.3 archive_write_set_compression_compress.3 -MLINKS+= archive_write.3 archive_write_set_compression_gzip.3 -MLINKS+= archive_write.3 archive_write_set_compression_none.3 -MLINKS+= archive_write.3 archive_write_set_compression_program.3 -MLINKS+= archive_write.3 archive_write_set_format_pax.3 -MLINKS+= archive_write.3 archive_write_set_format_shar.3 -MLINKS+= archive_write.3 archive_write_set_format_ustar.3 +MLINKS+= archive_write_blocksize.3 archive_write_get_bytes_in_last_block.3 +MLINKS+= archive_write_blocksize.3 archive_write_get_bytes_per_block.3 +MLINKS+= archive_write_blocksize.3 archive_write_set_bytes_in_last_block.3 +MLINKS+= archive_write_blocksize.3 archive_write_set_bytes_per_block.3 +MLINKS+= archive_write_disk.3 archive_write_data_block.3 MLINKS+= archive_write_disk.3 archive_write_disk_new.3 MLINKS+= archive_write_disk.3 archive_write_disk_set_group_lookup.3 MLINKS+= archive_write_disk.3 archive_write_disk_set_options.3 MLINKS+= archive_write_disk.3 archive_write_disk_set_skip_file.3 MLINKS+= archive_write_disk.3 archive_write_disk_set_standard_lookup.3 MLINKS+= archive_write_disk.3 archive_write_disk_set_user_lookup.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_bzip2.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_compress.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_gzip.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_lzip.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_lzma.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_none.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_program.3 +MLINKS+= archive_write_filter.3 archive_write_add_filter_xz.3 +MLINKS+= archive_write_format.3 archive_write_set_format_cpio.3 +MLINKS+= archive_write_format.3 archive_write_set_format_pax.3 +MLINKS+= archive_write_format.3 archive_write_set_format_pax_restricted.3 +MLINKS+= archive_write_format.3 archive_write_set_format_shar.3 +MLINKS+= archive_write_format.3 archive_write_set_format_shar_dump.3 +MLINKS+= archive_write_format.3 archive_write_set_format_ustar.3 +MLINKS+= archive_write_free.3 archive_write_close.3 +MLINKS+= archive_write_free.3 archive_write_finish.3 +MLINKS+= archive_write_open.3 archive_write_open_FILE.3 +MLINKS+= archive_write_open.3 archive_write_open_fd.3 +MLINKS+= archive_write_open.3 archive_write_open_file.3 +MLINKS+= archive_write_open.3 archive_write_open_filename.3 +MLINKS+= archive_write_open.3 archive_write_open_memory.3 +MLINKS+= archive_write_set_options.3 archive_write_set_filter_option.3 +MLINKS+= archive_write_set_options.3 archive_write_set_format_option.3 +MLINKS+= archive_write_set_options.3 archive_write_set_option.3 MLINKS+= libarchive.3 archive.3 .PHONY: check test clean-test |