From 6946d259871bc0b48c4363a399abfcf46cd22170 Mon Sep 17 00:00:00 2001 From: Larry Gritz Date: Fri, 18 Sep 2026 21:22:20 -0700 Subject: [PATCH] build: Change default OpenJPH auto-build to 0.32.0 Signed-off-by: Larry Gritz --- src/build-scripts/build_openjph.bash | 2 +- src/cmake/build_openjph.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/build-scripts/build_openjph.bash b/src/build-scripts/build_openjph.bash index e3b2346368..819c55e6b3 100755 --- a/src/build-scripts/build_openjph.bash +++ b/src/build-scripts/build_openjph.bash @@ -11,7 +11,7 @@ set -ex # Repo and branch/tag/commit of openjph to download if we don't have it yet OPENJPH_REPO=${OPENJPH_REPO:=https://github.com/aous72/OpenJPH.git} -OPENJPH_VERSION=${OPENJPH_VERSION:=0.31.0} +OPENJPH_VERSION=${OPENJPH_VERSION:=0.32.0} # Where to put openjph repo source (default to the ext area) LOCAL_DEPS_DIR=${LOCAL_DEPS_DIR:=${PWD}/ext} diff --git a/src/cmake/build_openjph.cmake b/src/cmake/build_openjph.cmake index b6a5018447..6db8d24acf 100644 --- a/src/cmake/build_openjph.cmake +++ b/src/cmake/build_openjph.cmake @@ -2,10 +2,10 @@ # SPDX-License-Identifier: Apache-2.0 # https://github.com/AcademySoftwareFoundation/OpenImageIO -set_cache (openjph_BUILD_VERSION 0.31.0 "openjph version for local builds") +set_cache (openjph_BUILD_VERSION 0.32.0 "openjph version for local builds") set (openjph_GIT_REPOSITORY "https://github.com/aous72/OpenJPH.git") set (openjph_GIT_TAG "${openjph_BUILD_VERSION}") -set_cache (openjph_GIT_COMMIT "c68064d0e4cad8e96bab9a068f6cc4e7799744fc" +set_cache (openjph_GIT_COMMIT "23c422895ce6c3a156935222e4715ee0b7be952c" "commit hash to verify tag against") set_cache (openjph_BUILD_SHARED_LIBS ${LOCAL_BUILD_SHARED_LIBS_DEFAULT} DOC "Should a local openjph build, if necessary, build shared libraries" ADVANCED)