mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
16 lines
669 B
Text
16 lines
669 B
Text
--- CMakeLists.txt.orig 2015-02-26 20:05:06 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -525,9 +527,10 @@ target_link_libraries(libzip ${ZLIB_LIBR
|
|
include_directories(native/ext/libzip)
|
|
set(LIBZIP_LIBRARY libzip)
|
|
|
|
-# FindPNG does a few things we don't want. So do it ourselves. Fixed to libpng17
|
|
-find_path(PNG_PNG_INCLUDE_DIR NAMES "libpng17/png.h")
|
|
-find_library(PNG_LIBRARY NAMES png17 libpng17)
|
|
+find_package(PkgConfig)
|
|
+pkg_check_modules(PNG libpng>=1.6)
|
|
+set(PNG_LIBRARY ${PNG_LIBRARIES})
|
|
+set(PNG_PNG_INCLUDE_DIR ${PNG_INCLUDE_DIRS})
|
|
find_package(PackageHandleStandardArgs)
|
|
find_package_handle_standard_args(PNG REQUIRED_VARS PNG_LIBRARY PNG_PNG_INCLUDE_DIR)
|
|
if (PNG_FOUND)
|