Skip to content

Commit d588fc0

Browse files
committed
disable pcre - ftp is offline
1 parent cff8ef0 commit d588fc0

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

build-ffmpeg

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -724,18 +724,24 @@ if command_exists "python3"; then
724724
execute ./waf install
725725
build_done "serd" "0.30.10"
726726
fi
727-
if build "pcre" "8.44"; then
728-
download "https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz" "pcre-8.44.tar.gz"
729-
if $SHARED_LIBRARIES; then
730-
execute ./configure --prefix="${WORKSPACE}" --enable-shared --disable-static
731-
else
732-
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
733-
fi
734-
execute make -j $MJOBS
735-
execute make install
736727

737-
build_done "pcre" "8.44"
728+
# [ Descript - cvanwink ]
729+
# FTP for pcre looks to be down
730+
if false; then
731+
if build "pcre" "8.44"; then
732+
download "https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz" "pcre-8.44.tar.gz"
733+
if $SHARED_LIBRARIES; then
734+
execute ./configure --prefix="${WORKSPACE}" --enable-shared --disable-static
735+
else
736+
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
737+
fi
738+
execute make -j $MJOBS
739+
execute make install
740+
741+
build_done "pcre" "8.44"
742+
fi
738743
fi
744+
739745
if build "sord" "0.16.8"; then
740746
download "https://gitlab.com/drobilla/sord/-/archive/v0.16.8/sord-v0.16.8.tar.gz" "sord-v0.16.8.tar.gz"
741747
execute cp -r "${PACKAGES}"/autowaf/* "${PACKAGES}/sord-v0.16.8/waflib/"

0 commit comments

Comments
 (0)