diff options
author | Martin Matuska <mm@FreeBSD.org> | 2017-03-20 11:12:31 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2017-03-20 11:12:31 +0000 |
commit | 4a7f6834348e3853977e1b7d69ff44f6eb93313c (patch) | |
tree | 27f68e9bbe812cb11d4094911825d437242a25d7 /build/cmake/config.h.in | |
parent | 086ca70a2894f87d7cd5ac72a6d891b00d5b4dc5 (diff) | |
download | src-4a7f6834348e3853977e1b7d69ff44f6eb93313c.tar.gz src-4a7f6834348e3853977e1b7d69ff44f6eb93313c.zip |
Update vendor/libarchive to git 5881c9021a85668bd945593f5ba43a0d22c53d71
Vendor changes (FreeBSD-related):
Break ACL read/write code into platform-specific source files
Vendor bugfixes (FreeBSD-related):
PR 867 (bsdcpio): show numeric uid/gid when names are not found
PR 870 (seekable zip): accept files with valid ZIP64 EOCD headers
PR 880 (pax): Fix handling of "size" pax header keyword
PR 887 (crypto): Discard 3072 bytes instead of 1024 of first keystream
OSS-Fuzz issue 806 (mtree): rework mtree_atol10 integer parser
Unbreak static dependency on libbz2
Notes
Notes:
svn path=/vendor/libarchive/dist/; revision=315633
Diffstat (limited to 'build/cmake/config.h.in')
-rw-r--r-- | build/cmake/config.h.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index 8c18edf8a079..cfd2a5c0aa83 100644 --- a/build/cmake/config.h.in +++ b/build/cmake/config.h.in @@ -179,6 +179,27 @@ typedef uint64_t uintmax_t; /* Define ZLIB_WINAPI if zlib was built on Visual Studio. */ #cmakedefine ZLIB_WINAPI 1 +/* Darwin ACL support */ +#cmakedefine ARCHIVE_ACL_DARWIN 1 + +/* FreeBSD ACL support */ +#cmakedefine ARCHIVE_ACL_FREEBSD 1 + +/* FreeBSD NFSv4 ACL support */ +#cmakedefine ARCHIVE_ACL_FREEBSD_NFS4 1 + +/* Linux POSIX.1e ACL support via libacl */ +#cmakedefine ARCHIVE_ACL_LIBACL 1 + +/* Linux NFSv4 ACL support via librichacl */ +#cmakedefine ARCHIVE_ACL_LIBRICHACL 1 + +/* Solaris ACL support */ +#cmakedefine ARCHIVE_ACL_SUNOS 1 + +/* Solaris NFSv4 ACL support */ +#cmakedefine ARCHIVE_ACL_SUNOS_NFS4 1 + /* MD5 via ARCHIVE_CRYPTO_MD5_LIBC supported. */ #cmakedefine ARCHIVE_CRYPTO_MD5_LIBC 1 @@ -1013,6 +1034,9 @@ typedef uint64_t uintmax_t; /* Define to 1 if you have the <sys/poll.h> header file. */ #cmakedefine HAVE_SYS_POLL_H 1 +/* Define to 1 if you have the <sys/richacl.h> header file. */ +#cmakedefine HAVE_SYS_RICHACL_H 1 + /* Define to 1 if you have the <sys/select.h> header file. */ #cmakedefine HAVE_SYS_SELECT_H 1 |