From: Behdad Esfahbod Date: Thu, 20 Jun 2019 01:32:40 +0000 (-0700) Subject: [config] Disable hb-ot-font code if HB_NO_OT_FONT X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1432df102ebf206592f92677f48bb950871675b3;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [config] Disable hb-ot-font code if HB_NO_OT_FONT Part of https://github.com/harfbuzz/harfbuzz/issues/1652 --- diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc index 0707a2f..5895c7b 100644 --- a/src/hb-ot-font.cc +++ b/src/hb-ot-font.cc @@ -26,6 +26,8 @@ #include "hb.hh" +#ifndef HB_NO_OT_FONT + #include "hb-ot.h" #include "hb-font.hh" @@ -317,3 +319,6 @@ hb_ot_font_set_funcs (hb_font_t *font) &font->face->table, nullptr); } + + +#endif