Skip to content

Commit 865e259

Browse files
authored
Merge pull request #253 from vemcaster/master
Switch to GNU mirrors for GNU dependencies downloads
2 parents 79642ac + 5eb910d commit 865e259

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build-ffmpeg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -418,23 +418,23 @@ if build "zlib" "1.3.1"; then
418418
fi
419419

420420
if build "m4" "1.4.19"; then
421-
download "https://ftp.gnu.org/gnu/m4/m4-$CURRENT_PACKAGE_VERSION.tar.gz"
421+
download "https://ftpmirror.gnu.org/gnu/m4/m4-$CURRENT_PACKAGE_VERSION.tar.gz"
422422
execute ./configure --prefix="${WORKSPACE}"
423423
execute make -j $MJOBS
424424
execute make install
425425
build_done "m4" $CURRENT_PACKAGE_VERSION
426426
fi
427427

428428
if build "autoconf" "2.72"; then
429-
download "https://ftp.gnu.org/gnu/autoconf/autoconf-$CURRENT_PACKAGE_VERSION.tar.gz"
429+
download "https://ftpmirror.gnu.org/gnu/autoconf/autoconf-$CURRENT_PACKAGE_VERSION.tar.gz"
430430
execute ./configure --prefix="${WORKSPACE}"
431431
execute make -j $MJOBS
432432
execute make install
433433
build_done "autoconf" $CURRENT_PACKAGE_VERSION
434434
fi
435435

436436
if build "automake" "1.17"; then
437-
download "https://ftp.gnu.org/gnu/automake/automake-$CURRENT_PACKAGE_VERSION.tar.gz"
437+
download "https://ftpmirror.gnu.org/gnu/automake/automake-$CURRENT_PACKAGE_VERSION.tar.gz"
438438
execute ./configure --prefix="${WORKSPACE}"
439439
execute make -j $MJOBS
440440
execute make install
@@ -468,15 +468,15 @@ if $NONFREE_AND_GPL; then
468468
CONFIGURE_OPTIONS+=("--enable-openssl")
469469
else
470470
if build "gmp" "6.3.0"; then
471-
download "https://ftp.gnu.org/gnu/gmp/gmp-$CURRENT_PACKAGE_VERSION.tar.xz"
471+
download "https://ftpmirror.gnu.org/gnu/gmp/gmp-$CURRENT_PACKAGE_VERSION.tar.xz"
472472
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
473473
execute make -j $MJOBS
474474
execute make install
475475
build_done "gmp" $CURRENT_PACKAGE_VERSION
476476
fi
477477

478478
if build "nettle" "3.10"; then
479-
download "https://ftp.gnu.org/gnu/nettle/nettle-$CURRENT_PACKAGE_VERSION.tar.gz"
479+
download "https://ftpmirror.gnu.org/gnu/nettle/nettle-$CURRENT_PACKAGE_VERSION.tar.gz"
480480
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-openssl --disable-documentation --libdir="${WORKSPACE}"/lib CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
481481
execute make -j $MJOBS
482482
execute make install

0 commit comments

Comments
 (0)