aboutsummarylogtreecommitdiffstats
path: root/0012-Fix-linking-against-static-harfbuzz.patch
blob: 8458a11db5850d5fab550c596cc30a3d0f3182bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 3b6fa1aeceb994d9d845f6de533c6c1517e56ab8 Mon Sep 17 00:00:00 2001
From: Martchus <martchus@gmx.net>
Date: Sun, 18 Sep 2016 14:22:56 +0200
Subject: [PATCH 12/31] Fix linking against static harfbuzz

---
 src/gui/configure.json | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/gui/configure.json b/src/gui/configure.json
index b000d00801..5ba7fa26ae 100644
--- a/src/gui/configure.json
+++ b/src/gui/configure.json
@@ -133,7 +133,11 @@
             "label": "HarfBuzz",
             "test": "unix/harfbuzz",
             "sources": [
-                "-lharfbuzz"
+                { "type": "pkgConfig", "args": "--static --libs harfbuzz", "condition": "!features.shared" },
+                { "type": "pkgConfig", "args": "--libs harfbuzz", "condition": "features.shared" },
+                { "libs": "-lharfbuzz  -lfreetype -lharfbuzz -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -lpcre -lintl -lpcre -lintl -liconv -lgraphite2 -lbz2", "condition": "!features.shared" },
+                { "libs": "-Wl,-Bdynamic -lharfbuzz -Wl,-Bstatic", "condition": "!features.shared" },
+                { "libs": "-lharfbuzz", "condition": "features.shared" }
             ]
         },
         "imf": {
-- 
2.13.2