Bump bundled libarchive version to 3.5.2

- Update bunlded libarchive version used on Windows/Mac
- Enable requested zstd support while we are at it. Closes #211
This commit is contained in:
Floris Bos 2021-12-09 12:22:14 +01:00
parent 03e083b4f3
commit 67618a2eac
1869 changed files with 166685 additions and 9489 deletions

View file

@ -1,41 +0,0 @@
ARCHIVE_ENTRY_MISC(3) manual page
== NAME ==
'''archive_entry_symlink_type''',
'''archive_entry_set_symlink_type'''
- miscellaneous functions for manipulating properties of archive_entry
== LIBRARY ==
Streaming Archive Library (libarchive, -larchive)
== SYNOPSIS ==
'''<nowiki>#include <archive_entry.h></nowiki>'''
<br>
''int''
<br>
'''archive_entry_symlink_type'''(''struct archive_entry *a'');
<br>
''void''
<br>
'''archive_entry_set_symlink_type'''(''struct archive_entry *a'', ''int'');
== DESCRIPTION ==
The function
'''archive_entry_symlink_type'''()
returns and the function
'''archive_entry_set_symlink_type'''()
sets the type of the symbolic link stored in an archive entry.
These functions
have special meaning on operating systems that support multiple symbolic link
types (e.g. Microsoft Windows).
Supported values are:
<dl>
<dt>AE_SYMLINK_TYPE_UNDEFINED</dt><dd>
Symbolic link target type is not defined (default on unix systems)
</dd><dt>AE_SYMLINK_TYPE_FILE</dt><dd>
Symbolic link points to a file
</dd><dt>AE_SYMLINK_TYPE_DIRECTORY</dt><dd>
Symbolic link points to a directory
</dd></dl>
== SEE ALSO ==
[[ManPagerchiventry3]],
[[ManPagerchiventryaths3]],
[[ManPagerchiventrytat3]],
[[ManPageibarchive3]]