Skip to content

Commit

Permalink
libarchive: update to version 3.5.1 (#436)
Browse files Browse the repository at this point in the history
update to libarchive 3.5.1 for compilation fixes

Signed-off-by: Dalton Bohning <daltonx.bohning@intel.com>
  • Loading branch information
daltonbohning committed Jan 19, 2021
2 parents a7afd70 + 4049921 commit ba8c8d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ before_install:
- pushd ${dtcmp}
- ./configure --with-lwgrp=/usr/local && make && sudo make install
- popd
- libarchive=libarchive-3.5.0
- wget https://github.com/libarchive/libarchive/releases/download/v3.5.0/${libarchive}.tar.gz
- libarchive=libarchive-3.5.1
- wget https://github.com/libarchive/libarchive/releases/download/3.5.1/${libarchive}.tar.gz
- tar zxvf ${libarchive}.tar.gz
- pushd ${libarchive}
- ./configure && make && sudo make install
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ LIST(APPEND MFU_EXTERNAL_LIBS ${DTCMP_LIBRARIES})
# libarchive 3.1.2 is available on some systems,
# but pick a newer libarchive to avoid bug with files starting with "._",
# which is misinterpretted as a MacOS extension on Linuxlibarchive 3.1.2
FIND_PACKAGE(LibArchive 3.5.0 REQUIRED)
FIND_PACKAGE(LibArchive 3.5.1 REQUIRED)
INCLUDE_DIRECTORIES(${LibArchive_INCLUDE_DIRS})
LIST(APPEND MFU_EXTERNAL_LIBS ${LibArchive_LIBRARIES})

Expand Down
6 changes: 3 additions & 3 deletions doc/rst/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Then to install the dependencies, run the following commands:
wget https://github.com/hpc/libcircle/releases/download/v0.3/libcircle-0.3.0.tar.gz
wget https://github.com/llnl/lwgrp/releases/download/v1.0.3/lwgrp-1.0.3.tar.gz
wget https://github.com/llnl/dtcmp/releases/download/v1.1.1/dtcmp-1.1.1.tar.gz
wget https://github.com/libarchive/libarchive/releases/download/v3.5.0/libarchive-3.5.0.tar.gz
wget https://github.com/libarchive/libarchive/releases/download/3.5.1/libarchive-3.5.1.tar.gz
tar -zxf libcircle-0.3.0.tar.gz
cd libcircle-0.3.0
Expand All @@ -68,8 +68,8 @@ Then to install the dependencies, run the following commands:
make install
cd ..
tar -zxf libarchive-3.5.0.tar.gz
cd libarchive-3.5.0
tar -zxf libarchive-3.5.1.tar.gz
cd libarchive-3.5.1
./configure --prefix=$installdir
make install
cd ..
Expand Down

0 comments on commit ba8c8d2

Please sign in to comment.