Unverified Commit 7c5a270c authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #282 from radarhere/bzip

MRG: Changed bzip2 download URL

https://download.sourceforge.net/bzip2/ only has 1.0.6, while https://sourceware.org/pub/bzip2/, as found at https://sourceware.org/bzip2/, has 1.0.1 through 1.0.8.
parents b8e5dd0f ba7b0c5d
...@@ -135,7 +135,7 @@ function build_libpng { ...@@ -135,7 +135,7 @@ function build_libpng {
function build_bzip2 { function build_bzip2 {
if [ -n "$IS_OSX" ]; then return; fi # OSX has bzip2 libs already if [ -n "$IS_OSX" ]; then return; fi # OSX has bzip2 libs already
if [ -e bzip2-stamp ]; then return; fi if [ -e bzip2-stamp ]; then return; fi
fetch_unpack https://download.sourceforge.net/bzip2/bzip2-${BZIP2_VERSION}.tar.gz fetch_unpack https://sourceware.org/pub/bzip2/bzip2-${BZIP2_VERSION}.tar.gz
(cd bzip2-${BZIP2_VERSION} \ (cd bzip2-${BZIP2_VERSION} \
&& make -f Makefile-libbz2_so \ && make -f Makefile-libbz2_so \
&& make install PREFIX=$BUILD_PREFIX) && make install PREFIX=$BUILD_PREFIX)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment