Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 3 additions & 7 deletions build/posix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -358,14 +358,10 @@ CFLAGS="${CFLAGS} -O3" meson setup _build --default-library=static --buildtype=r
meson install -C _build --tag devel

mkdir ${DEPS}/uhdr
$CURL https://github.com/google/libultrahdr/archive/v${VERSION_UHDR}.tar.gz | tar xzC ${DEPS}/uhdr --strip-components=1
$CURL https://github.com/google/libultrahdr/archive/${VERSION_UHDR}.tar.gz | tar xzC ${DEPS}/uhdr --strip-components=1
cd ${DEPS}/uhdr
# [PATCH] improper use of clamp macro
$CURL https://github.com/google/libultrahdr/commit/5ed39d67cd31d254e84ebf76b03d4b7bcc12e2f7.patch | patch -p1
# [PATCH] Add ppc64le and s390x to recognized architectures
$CURL https://github.com/google/libultrahdr/pull/376.patch | patch -p1
# Avoid architecture-specific compile flags
sed -i'.bak' '/add_compile_options(-[mf]/d' CMakeLists.txt
# [PATCH] Remove platform and architecture detection logic
$CURL https://github.com/google/libultrahdr/pull/383.patch | patch -p1
# Ensure install targets are enabled when cross-compiling
sed -i'.bak' 's/CMAKE_CROSSCOMPILING AND UHDR_ENABLE_INSTALL/FALSE/' CMakeLists.txt
CFLAGS="${CFLAGS} -O3" CXXFLAGS="${CXXFLAGS} -O3" cmake -G"Unix Makefiles" \
Expand Down
2 changes: 1 addition & 1 deletion check-latest-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ version_latest "png" "$VERSION_PNG" "1705"
version_latest "proxy-libintl" "$VERSION_PROXY_LIBINTL" "frida/proxy-libintl"
version_latest "rsvg" "$VERSION_RSVG" "5420" "unstable"
version_latest "tiff" "$VERSION_TIFF" "1738"
version_latest "uhdr" "$VERSION_UHDR" "375187"
#version_latest "uhdr" "$VERSION_UHDR" "375187" # use commit SHA until next tagged release
version_latest "vips" "$VERSION_VIPS" "5097"
version_latest "webp" "$VERSION_WEBP" "1761"
version_latest "xml2" "$VERSION_XML2" "1783"
Expand Down
2 changes: 1 addition & 1 deletion versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VERSION_PNG=1.6.54
VERSION_PROXY_LIBINTL=0.5
VERSION_RSVG=2.61.90
VERSION_TIFF=4.7.1
VERSION_UHDR=1.4.0
VERSION_UHDR=8cbc983
VERSION_VIPS=8.18.0
VERSION_WEBP=1.6.0
VERSION_XML2=2.15.1
Expand Down