Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update ijg jpeg lib to v9f, partially fixes DEV-3474 #449

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
6 changes: 3 additions & 3 deletions ext/jpeg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ set(timestamp_policy DOWNLOAD_EXTRACT_TIMESTAMP OLD)

ExternalProject_Add(project_jpeg
INSTALL_DIR ${CMAKE_BINARY_DIR}/local
URL https://github.com/dasch-swiss/sipi-third-party/raw/main/third-party/jpegsrc.v9c.tar.gz
URL https://ijg.org/files/jpegsrc.v9f.tar.gz
${timestamp_policy}
DOWNLOAD_DIR ${CMAKE_BINARY_DIR}/local/extsrcs/downloads
#URL_HASH SHA256=650250979303a649e21f87b5ccd02672af1ea6954b911342ea491f351ceb7122
#DOWNLOAD_EXTRACT_TIMESTAMP OLD
SOURCE_DIR ${CMAKE_BINARY_DIR}/local/extsrcs/libjpeg-v9c
CONFIGURE_COMMAND ${CMAKE_BINARY_DIR}/local/extsrcs/libjpeg-v9c/configure --prefix=${CMAKE_BINARY_DIR}/local --enable-shared --enable-static --libdir=${CMAKE_BINARY_DIR}/local/lib
SOURCE_DIR ${CMAKE_BINARY_DIR}/local/extsrcs/libjpeg-v9f
CONFIGURE_COMMAND ${CMAKE_BINARY_DIR}/local/extsrcs/libjpeg-v9f/configure --prefix=${CMAKE_BINARY_DIR}/local --enable-shared --enable-static --libdir=${CMAKE_BINARY_DIR}/local/lib
BUILD_COMMAND make
BUILD_IN_SOURCE 1
)
Expand Down