aboutsummaryrefslogtreecommitdiff
path: root/ports/cairo
diff options
context:
space:
mode:
authorangelmixu <salemixu@gmail.com>2019-02-08 00:24:33 +0100
committerRobert Schumacher <roschuma@microsoft.com>2019-02-07 15:24:33 -0800
commit1eceb88c71b3ed2a12e9a56823c658ebb2e57cc1 (patch)
tree2649c23cfa8293b7fdac5f3b43ca5d61a6ff859c /ports/cairo
parent0b79c4bb74aa1a1908c23edb3ca07b5e6dd39141 (diff)
downloadvcpkg-1eceb88c71b3ed2a12e9a56823c658ebb2e57cc1.tar.gz
vcpkg-1eceb88c71b3ed2a12e9a56823c658ebb2e57cc1.zip
fix build for harfbuzz on macOS (#4776)
* fix library exports for iconv on macOS, add Threads dependency for cairo, add the iconv, intl and Threads dependencies to harfbuzz * updated portfile from harfbuzz fix * fix indenting and order * fix portfile * [gettext] Add unofficial-gettext targets * [gettext] Fixup for Linux
Diffstat (limited to 'ports/cairo')
-rw-r--r--ports/cairo/CMakeLists.txt3
-rw-r--r--ports/cairo/CONTROL2
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/cairo/CMakeLists.txt b/ports/cairo/CMakeLists.txt
index 9fc476539..a23d776ed 100644
--- a/ports/cairo/CMakeLists.txt
+++ b/ports/cairo/CMakeLists.txt
@@ -167,6 +167,9 @@ find_package(Freetype REQUIRED)
find_package(unofficial-glib CONFIG REQUIRED)
find_package(unofficial-fontconfig CONFIG REQUIRED)
find_package(unofficial-pixman CONFIG REQUIRED)
+if(APPLE)
+ find_package(Threads REQUIRED)
+endif()
# Cairo needs to be told which features of FreeType are availible
add_definitions(
diff --git a/ports/cairo/CONTROL b/ports/cairo/CONTROL
index 365fe38e7..d33147b18 100644
--- a/ports/cairo/CONTROL
+++ b/ports/cairo/CONTROL
@@ -1,4 +1,4 @@
Source: cairo
-Version: 1.15.8-4
+Version: 1.15.8-5
Description: Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.
Build-Depends: zlib, libpng, pixman, glib, freetype, fontconfig