Skip to content

Commit

Permalink
Bump dep: aom
Browse files Browse the repository at this point in the history
Platforms with an ancient version of NASM remain pinned to
v3.6.1, which at the moment is linux-x64 only, and the
forthcoming upgrade from Centos 7 to Amazon 2 will
upgrade NASM to 2.15.
  • Loading branch information
lovell committed Sep 18, 2023
1 parent 135e40d commit a7c31d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/lin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ VERSION_CAIRO=1.17.8
VERSION_FRIBIDI=1.0.13
VERSION_PANGO=1.51.0
VERSION_RSVG=2.57.0
VERSION_AOM=3.6.1
VERSION_AOM=3.7.0
VERSION_HEIF=1.16.2
VERSION_CGIF=0.3.2

Expand Down Expand Up @@ -174,7 +174,7 @@ version_latest "cairo" "$VERSION_CAIRO" "247"
version_latest "fribidi" "$VERSION_FRIBIDI" "857"
#version_latest "pango" "$VERSION_PANGO" "11783" https://gitlab.gnome.org/GNOME/pango/-/issues/760
version_latest "rsvg" "$VERSION_RSVG" "5420"
#version_latest "aom" "$VERSION_AOM" "17628" # TODO: investigate compilation errors with latest 3.7.0
version_latest "aom" "$VERSION_AOM" "17628"
version_latest "heif" "$VERSION_HEIF" "strukturag/libheif"
version_latest "cgif" "$VERSION_CGIF" "dloebl/cgif"
if [ "$ALL_AT_VERSION_LATEST" = "false" ]; then exit 1; fi
Expand Down Expand Up @@ -246,6 +246,9 @@ CFLAGS="${CFLAGS} -O3" meson setup _build --default-library=static --buildtype=r
meson install -C _build --tag devel

mkdir ${DEPS}/aom
if [[ "$(nasm -v)" == "NASM version 2.10"* ]]; then
VERSION_AOM="3.6.1"
fi
$CURL https://storage.googleapis.com/aom-releases/libaom-${VERSION_AOM}.tar.gz | tar xzC ${DEPS}/aom --strip-components=1
cd ${DEPS}/aom
mkdir aom_build
Expand Down

0 comments on commit a7c31d4

Please sign in to comment.