diff options
author | Andoni Morales <amorales@fluendo.com> | 2019-02-13 13:38:04 +0100 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2019-06-07 10:15:44 -0400 |
commit | 187b0f92ab34afb037f498009d50a197df870cbf (patch) | |
tree | 27bd0b8ebca41a35685d58779f02613afce16d0f /recipes/libpng.recipe | |
parent | 91b92f3b7d0198b2c71d62f92a7d117e7d387b3a (diff) |
libpng: Fix build in native Windows do to incorrect \r inserted
Somewhere in the pnglibconf.h generation \r characters
are being added. This happens with the new toolchain
in native Windows build.
libpngconf.h
Diffstat (limited to 'recipes/libpng.recipe')
-rw-r--r-- | recipes/libpng.recipe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/libpng.recipe b/recipes/libpng.recipe index 70bd221a..b8418e35 100644 --- a/recipes/libpng.recipe +++ b/recipes/libpng.recipe @@ -9,7 +9,9 @@ class Recipe(recipe.Recipe): tarball_checksum = '505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca' licenses = [{License.LibPNG: ['LICENSE']}] deps = ['zlib'] - patches = [name + '/0001-neon-fix-function-export-names-for-iOS-armv7.patch'] + patches = [name + '/0001-neon-fix-function-export-names-for-iOS-armv7.patch', + name + '/0002-Fix-build-in-native-Windows-do-to-incorrect-r-insert.patch', + ] files_libs = ['libpng16'] files_devel = ['include/libpng16', 'bin/libpng16-config', |