summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-07-03 16:16:44 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-07-03 16:16:44 +0300
commite5622837160de59a9807309240ac1bc5380e4b73 (patch)
tree0325bf3a22e1b347ab75a642c717c85bf83b0b15 /src
parentbd1504bbefc8954557044691bddd463c0d0e1911 (diff)
Added build options for HarfBuzz and FriBidi
Allow using both `pkg-config` provided libraries for local builds, and configuring more minimal versions for distribution. HarfBuzz has a bunch of dependencies by default. TODO: ENABLE_FRIBIDI_BUILD should cause a static library to be built.
Diffstat (limited to 'src')
-rw-r--r--src/ui/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/text.c b/src/ui/text.c
index 175b25a1..30405bcb 100644
--- a/src/ui/text.c
+++ b/src/ui/text.c
@@ -1170,7 +1170,7 @@ static iRect run_Font_(iFont *d, const iRunArgs *args) {
1170 hb_buffer_clear_contents(hbBuf); 1170 hb_buffer_clear_contents(hbBuf);
1171 /* Cluster values are used to determine offset inside the UTF-8 source string. */ 1171 /* Cluster values are used to determine offset inside the UTF-8 source string. */
1172 //hb_buffer_set_cluster_level(hbBuf, HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS); 1172 //hb_buffer_set_cluster_level(hbBuf, HB_BUFFER_CLUSTER_LEVEL_MONOTONE_CHARACTERS);
1173#if 0 && defined (LAGRANGE_ENABLE_FRIBIDI) 1173#if defined (LAGRANGE_ENABLE_FRIBIDI)
1174 /* Reorder to visual order. */ { 1174 /* Reorder to visual order. */ {
1175 iArray u32; 1175 iArray u32;
1176 iArray logToRun; 1176 iArray logToRun;