Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 866e843

Browse filesBrowse files
author
Markus Perl
committed
multiple libraries updated
1 parent eb1d233 commit 866e843
Copy full SHA for 866e843

File tree

Expand file treeCollapse file tree

1 file changed

+19
-19
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+19
-19
lines changed

‎build-ffmpeg

Copy file name to clipboardExpand all lines: build-ffmpeg
+19-19Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,8 @@ if build "libtool" "2.4.7"; then
387387
fi
388388

389389
if $NONFREE_AND_GPL; then
390-
if build "openssl" "1.1.1s"; then
391-
download "https://www.openssl.org/source/openssl-1.1.1s.tar.gz"
390+
if build "openssl" "1.1.1t"; then
391+
download "https://www.openssl.org/source/openssl-1.1.1t.tar.gz"
392392
if $MACOS_M1; then
393393
sed -n 's/\(##### GNU Hurd\)/"darwin64-arm64-cc" => { \n inherit_from => [ "darwin-common", asm("aarch64_asm") ],\n CFLAGS => add("-Wall"),\n cflags => add("-arch arm64 "),\n lib_cppflags => add("-DL_ENDIAN"),\n bn_ops => "SIXTY_FOUR_BIT_LONG", \n perlasm_scheme => "macosx", \n}, \n\1/g' Configurations/10-main.conf
394394
execute ./Configure --prefix="${WORKSPACE}" no-shared no-asm darwin64-arm64-cc
@@ -397,7 +397,7 @@ if $NONFREE_AND_GPL; then
397397
fi
398398
execute make -j $MJOBS
399399
execute make install_sw
400-
build_done "openssl" "1.1.1s"
400+
build_done "openssl" "1.1.1t"
401401
fi
402402
CONFIGURE_OPTIONS+=("--enable-openssl")
403403
else
@@ -418,12 +418,12 @@ else
418418
fi
419419

420420
if [[ ! $ARCH == 'arm64' ]]; then
421-
if build "gnutls" "3.7.8"; then
422-
download "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.8.tar.xz"
421+
if build "gnutls" "3.7.9"; then
422+
download "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.9.tar.xz"
423423
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-doc --disable-tools --disable-cxx --disable-tests --disable-gtk-doc-html --disable-libdane --disable-nls --enable-local-libopts --disable-guile --with-included-libtasn1 --with-included-unistring --without-p11-kit CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
424424
execute make -j $MJOBS
425425
execute make install
426-
build_done "gnutls" "3.7.8"
426+
build_done "gnutls" "3.7.9"
427427
fi
428428
# CONFIGURE_OPTIONS+=("--enable-gmp" "--enable-gnutls")
429429
fi
@@ -493,11 +493,11 @@ if ! $MACOS_M1; then
493493
fi
494494

495495
if command_exists "cargo"; then
496-
if build "rav1e" "0.6.2"; then
496+
if build "rav1e" "0.6.3"; then
497497
execute cargo install --version "0.9.14+cargo-0.66" cargo-c
498-
download "https://github.com/xiph/rav1e/archive/refs/tags/v0.6.2.tar.gz"
498+
download "https://github.com/xiph/rav1e/archive/refs/tags/v0.6.3.tar.gz"
499499
execute cargo cinstall --prefix="${WORKSPACE}" --library-type=staticlib --crt-static --release
500-
build_done "rav1e" "0.6.2"
500+
build_done "rav1e" "0.6.3"
501501
fi
502502
CONFIGURE_OPTIONS+=("--enable-librav1e")
503503
fi
@@ -818,32 +818,32 @@ fi
818818

819819
## does not compile on monterey -> _PrintGifError
820820
if [[ "$OSTYPE" != "darwin"* ]]; then
821-
if build "libwebp" "1.2.2"; then
821+
if build "libwebp" "1.3.0"; then
822822
# libwebp can fail to compile on Ubuntu if these flags were left set to CFLAGS
823823
CPPFLAGS=
824-
download "https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.2.2.tar.gz" "libwebp-1.2.2.tar.gz"
824+
download "https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.0.tar.gz" "libwebp-1.3.0.tar.gz"
825825
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-dependency-tracking --disable-gl --with-zlib-include="${WORKSPACE}"/include/ --with-zlib-lib="${WORKSPACE}"/lib
826826
make_dir build
827827
cd build || exit
828828
execute cmake -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_BINDIR=bin -DCMAKE_INSTALL_INCLUDEDIR=include -DENABLE_SHARED=OFF -DENABLE_STATIC=ON ../
829829
execute make -j $MJOBS
830830
execute make install
831831

832-
build_done "libwebp" "1.2.2"
832+
build_done "libwebp" "1.3.0"
833833
fi
834834
CONFIGURE_OPTIONS+=("--enable-libwebp")
835835
fi
836836
##
837837
## other library
838838
##
839839

840-
if build "libsdl" "2.26.1"; then
841-
download "https://www.libsdl.org/release/SDL2-2.26.1.tar.gz"
840+
if build "libsdl" "2.26.3"; then
841+
download "https://www.libsdl.org/release/SDL2-2.26.3.tar.gz"
842842
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
843843
execute make -j $MJOBS
844844
execute make install
845845

846-
build_done "libsdl" "2.26.1"
846+
build_done "libsdl" "2.26.3"
847847
fi
848848

849849
if $NONFREE_AND_GPL; then
@@ -899,12 +899,12 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
899899
fi
900900
fi
901901

902-
if build "amf" "1.4.28"; then
903-
download 'https://github.com/GPUOpen-LibrariesAndSDKs/AMF/archive/refs/tags/v1.4.28.tar.gz' 'AMF-1.4.28.tar.gz' 'AMF-1.4.28'
902+
if build "amf" "1.4.29"; then
903+
download 'https://github.com/GPUOpen-LibrariesAndSDKs/AMF/archive/refs/tags/v1.4.29.tar.gz' 'AMF-1.4.29.tar.gz' 'AMF-1.4.29'
904904
execute rm -rf "${WORKSPACE}/include/AMF"
905905
execute mkdir -p "${WORKSPACE}/include/AMF"
906-
execute cp -r "${PACKAGES}"/AMF-1.4.28/AMF-1.4.28/amf/public/include/* "${WORKSPACE}/include/AMF/"
907-
build_done "amf" "1.4.28"
906+
execute cp -r "${PACKAGES}"/AMF-1.4.29/AMF-1.4.29/amf/public/include/* "${WORKSPACE}/include/AMF/"
907+
build_done "amf" "1.4.29"
908908
fi
909909
CONFIGURE_OPTIONS+=("--enable-amf")
910910
fi

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.