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/autogen.sh | |
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/autogen.sh')
-rwxr-xr-x | build/autogen.sh | 1 |
1 files changed, 1 insertions, 0 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 |