diff options
author | Martin Matuska <mm@FreeBSD.org> | 2017-03-02 21:02:17 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2017-03-02 21:02:17 +0000 |
commit | 4b729aff5b4c807ecf8795452187ca06d5eb042d (patch) | |
tree | fefc76886e467f8a662770c4f394a8b76ebaf606 /build | |
parent | b2ee1181b4555230a015f1b8f27a1e7ec3c2bb6e (diff) | |
download | src-4b729aff5b4c807ecf8795452187ca06d5eb042d.tar.gz src-4b729aff5b4c807ecf8795452187ca06d5eb042d.zip |
Update vendor/libarchive to git d6b1bb9f7ea7bc153b7356e8e345c9e48005821avendor/libarchive/3.3.1
Release 3.3.1
Notable vendor changes:
PR #501: improvements in ACL path handling
PR #724: fix hang when reading malformed cpio files
PR #864: fix out of bounds read with malformed GNU tar archives
Test suite improvements
New options to bsdtar that enable or disable reading and/or writing of:
Access Control Lists (--acls, --no-acls)
Extended file flags (--fflags, --no-fflags)
Extended attributes (--xattrs, --no-xattrs)
Notes
Notes:
svn path=/vendor/libarchive/dist/; revision=314565
svn path=/vendor/libarchive/3.3.1/; revision=314566; tag=vendor/libarchive/3.3.1
Diffstat (limited to 'build')
-rwxr-xr-x | build/autogen.sh | 1 | ||||
-rw-r--r-- | build/cmake/config.h.in | 3 | ||||
-rw-r--r-- | build/version | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/build/autogen.sh b/build/autogen.sh index 64767b6ee6ca..e720e9b789b5 100755 --- a/build/autogen.sh +++ b/build/autogen.sh @@ -51,6 +51,7 @@ perl -p -i -e 's/(m4_define\(\[LIBARCHIVE_VERSION_N\]),.*\)/$1,['"$VN"'])/' conf # Remove developer CFLAGS if a release build is being made if [ -n "${MAKE_LIBARCHIVE_RELEASE}" ]; then perl -p -i -e "s/^(DEV_CFLAGS.*)/# \$1/" Makefile.am + perl -p -i -e 's/CMAKE_BUILD_TYPE "[A-Za-z]*"/CMAKE_BUILD_TYPE "Release"/' CMakeLists.txt fi set -xe diff --git a/build/cmake/config.h.in b/build/cmake/config.h.in index ec64d9937fab..923a78e51738 100644 --- a/build/cmake/config.h.in +++ b/build/cmake/config.h.in @@ -1099,6 +1099,9 @@ typedef uint64_t uintmax_t; /* Define to 1 if you have a working EXT2_IOC_GETFLAGS */ #cmakedefine HAVE_WORKING_EXT2_IOC_GETFLAGS 1 +/* Define to 1 if you have a working FS_IOC_GETFLAGS */ +#cmakedefine HAVE_WORKING_FS_IOC_GETFLAGS 1 + /* Define to 1 if you have the <zlib.h> header file. */ #cmakedefine HAVE_ZLIB_H 1 diff --git a/build/version b/build/version index f54ddaaefc3d..ef8345726c8a 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -3002002 +3003001 |