From b437af833d910932146d90e892f77a4c596ad9ed Mon Sep 17 00:00:00 2001 From: Itms Date: Tue, 23 Jun 2020 14:42:54 +0000 Subject: [PATCH] Stop downloading boost from sourceforge on macOS, as it is not the official source anymore, and it is not very reliable for big files. Reviewed By: Krinkle, wraitii Differential Revision: https://code.wildfiregames.com/D2766 This was SVN commit r23786. --- libraries/osx/build-osx-libs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/osx/build-osx-libs.sh b/libraries/osx/build-osx-libs.sh index 250538369c..7aa0460086 100755 --- a/libraries/osx/build-osx-libs.sh +++ b/libraries/osx/build-osx-libs.sh @@ -25,6 +25,7 @@ CURL_VERSION="curl-7.59.0" ICONV_VERSION="libiconv-1.15" XML2_VERSION="libxml2-2.9.8" SDL2_VERSION="SDL2-2.0.5" +# NOTE: remember to also update LIB_URL below when changing version BOOST_VERSION="boost_1_64_0" # NOTE: remember to also update LIB_URL below when changing version WXWIDGETS_VERSION="wxWidgets-3.0.3.1" @@ -365,7 +366,7 @@ echo -e "Building Boost..." LIB_VERSION="${BOOST_VERSION}" LIB_ARCHIVE="$LIB_VERSION.tar.bz2" LIB_DIRECTORY="$LIB_VERSION" -LIB_URL="http://download.sourceforge.net/boost/" +LIB_URL="https://dl.bintray.com/boostorg/release/1.64.0/source/" mkdir -p boost pushd boost > /dev/null