Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update broken tarball links #267

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions support/configure.inc
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ libyuv_setup() {
zlib_setup()
{
ZLIB_VER="1.2.3"
download_file http://commondatastorage.googleapis.com/nativeclient-mirror/nacl/zlib-${ZLIB_VER}.tar.gz zlibtarball
download_file https://github.com/madler/zlib/archive/refs/tags/v${ZLIB_VER}.tar.gz zlibtarball

ZLIB_SRC_DIR=${BUILDDIR}/zlib-${ZLIB_VER}

Expand All @@ -495,7 +495,7 @@ zlib_setup()
bzip2_setup()
{
BZIP2_VER="1.0.6"
download_file https://fossies.org/linux/misc/bzip2-${BZIP2_VER}.tar.gz bzip2tarball
download_file https://sourceware.org/pub/bzip2/bzip2-${BZIP2_VER}.tar.gz bzip2tarball

BZIP2_SRC_DIR=${BUILDDIR}/bzip2-${BZIP2_VER}

Expand All @@ -520,7 +520,7 @@ freetype_setup()
{
FREETYPE_VER="2.4.9"

download_file http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPE_VER}.tar.gz freetypetarball
download_file http://download.savannah.gnu.org/releases/freetype/freetype-old/freetype-${FREETYPE_VER}.tar.gz freetypetarball

FREETYPE_SRC_DIR=${BUILDDIR}/freetype-${FREETYPE_VER}
FREETYPE_BUILD_DIR=${BUILDDIR}/freetype/build
Expand Down