aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Karlsson <jonaskarlsson@fripost.org>2019-10-08 13:53:17 +0200
committerJonas Karlsson <jonaskarlsson@fripost.org>2019-10-08 14:34:30 +0200
commit66cfb24adfa38edded24350b5a1c74d20867e495 (patch)
treea8c9071d3a3a9fa27d1b399b2c0a9cc3310f5a73
parentf3e317b16f95184861ede6489cc33e17b83e352f (diff)
downloadvcpkg-66cfb24adfa38edded24350b5a1c74d20867e495.tar.gz
vcpkg-66cfb24adfa38edded24350b5a1c74d20867e495.zip
[irrlicht] Reorder link libraries
Since libpng depends on zlib it needs to be linked before so that the needed zlib symbols are found
-rw-r--r--ports/irrlicht/CMakeLists.txt2
-rw-r--r--ports/irrlicht/CONTROL2
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/irrlicht/CMakeLists.txt b/ports/irrlicht/CMakeLists.txt
index b58739836..ef4439126 100644
--- a/ports/irrlicht/CMakeLists.txt
+++ b/ports/irrlicht/CMakeLists.txt
@@ -79,9 +79,9 @@ else()
endif()
target_link_libraries(Irrlicht PRIVATE
- ${ZLIB_LIBRARY}
${PNG_LIBRARY}
${JPEG_LIBRARY}
+ ${ZLIB_LIBRARY}
${BZIP2_LIBRARY}
)
diff --git a/ports/irrlicht/CONTROL b/ports/irrlicht/CONTROL
index 234e84ad4..d92222ec5 100644
--- a/ports/irrlicht/CONTROL
+++ b/ports/irrlicht/CONTROL
@@ -1,5 +1,5 @@
Source: irrlicht
-Version: 1.8.4-2
+Version: 1.8.4-3
Homepage: http://irrlicht.sourceforge.net
Description: Irrlicht lightning fast 3d engine
Build-Depends: zlib, libpng, bzip2, libjpeg-turbo