-
Notifications
You must be signed in to change notification settings - Fork 206
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
Disable JPEG finding in libyuv #2459
Conversation
This is to prevent extra files in libyuv to be built and have a dependency order problem.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!!
The windows CI problem is unrelated. |
@@ -34,6 +34,7 @@ else() | |||
GIT_REPOSITORY "https://chromium.googlesource.com/libyuv/libyuv" | |||
BINARY_DIR "${LIBYUV_BINARY_DIR}" | |||
GIT_TAG "${AVIF_LOCAL_LIBYUV_TAG}" | |||
PATCH_COMMAND sed -i.bak -e "s:find_package.*(.*JPEG.*)::" CMakeLists.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vincent: Are you planning to submit a patch to libyuv to handle this properly?
Looking at the other build systems in the libyuv source tree, I think we should add a LIBYUV_DISABLE_JPEG option to libyuv's CMakeLists.txt file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need actually, I reverted that patch: there is actually an official way to make find_package fail, cf #2473
This is to prevent extra files in libyuv to be built and have a dependency order problem.