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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

All notable changes to this project will be documented in this file.

# 2025-11-08
# 2025-11-09

2024.5 / 2025.4 / 2026.2 releases. VFX Platform 2026 release is now feature complete.

- All releases
- Add OpenJPH 0.24.5 package
- OIIO builds against OpenJPH to handle JPEG-2000 j2c files ([#312](https://github.com/AcademySoftwareFoundation/aswf-docker/issues/312))
- OIIO 3.x in 2025/2026 builds against OpenJPH to handle JPEG-2000 j2c files ([#312](https://github.com/AcademySoftwareFoundation/aswf-docker/issues/312))
- Add build_XXX.sh in /usr/local and missing env vars to ci-XXX images to help test images ([307](https://github.com/AcademySoftwareFoundation/aswf-docker/issues/307))
- Separate ci-imath image include Imath dependencies but not Imath itself ([306](https://github.com/AcademySoftwareFoundation/aswf-docker/issues/306))
- 2024.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ diff --git src/jpeg2000.imageio/CMakeLists.txt src/jpeg2000.imageio/CMakeLists.t
index d99dd79ac..bfda2778a 100644
--- src/jpeg2000.imageio/CMakeLists.txt
+++ src/jpeg2000.imageio/CMakeLists.txt
@@ -2,10 +2,10 @@
@@ -2,13 +2,16 @@
# SPDX-License-Identifier: Apache-2.0
# https://github.com/AcademySoftwareFoundation/OpenImageIO

Expand All @@ -34,6 +34,12 @@ index d99dd79ac..bfda2778a 100644
set(_jpeg2000_defs "USE_OPENJPEG")

if (openjph_FOUND)
+ list(APPEND _jpeg2000_includes ${openjph_INCLUDE_DIR})
+ list(APPEND _jpeg2000_lib_dirs ${openjph_LIB_DIRS_RELEASE})
+ list(APPEND _jpeg2000_libs ${openjph_LIBS_RELEASE})
list(APPEND _jpeg2000_defs "USE_OPENJPH")
endif()

diff --git src/cmake/modules/FindLibRaw.cmake src/cmake/FindLibRaw.cmake
index d99dd79ac..bfda2778a 100644
--- src/cmake/modules/FindLibRaw.cmake
Expand Down
Loading