Don't try to use nonexistent libpng optimizations #1339
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #1094.
The embedded copy of libpng in juce_graphics/image_formats doesn't contain code for processor-specific hardware optimizations, but it may still try to use them in some cases, resulting in linker errors.
juce_PNGLoader.cpp already sets
PNG_ARM_NEON_OPT
to 0 to disable optimizations on ARM, but this should be done for all architectures, especially PowerPC, where builds currently fail (#1094):Linker failure on ppc64le
On x86, this isn't strictly necessary, because libpng optimizations are opt-in for x86, rather than opt-out as with all other architectures, but for completeness and robustness it is also included here.
The macros to disable optimizations on other platforms come straight from libpng's own build files; this is how it disables optimizations when compiled without support for them.
PNG_ARM_NEON_OPT
is already one of those macros; this PR simply adds the other three.