[config] Enable HB_NO_OT_FONT in HB_NO_OT
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 26 Jun 2019 20:25:02 +0000 (13:25 -0700)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 26 Jun 2019 20:25:02 +0000 (13:25 -0700)
CONFIG.md
src/hb-config.hh

index ff55154..bf14a6d 100644 (file)
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -90,8 +90,8 @@ without loss of functionality by defining `HB_NO_OT_FONT`.
 
 Most HarfBuzz clients use it for the main shaper, called "ot".  However, it
 is legitimate to want to compile HarfBuzz with only another backend, eg.
-CoreText, for example for an iOS app.  For that, you want `HB_NO_OT_SHAPE`,
-or more generally `HB_NO_OT`.
+CoreText, for example for an iOS app.  For that, you want `HB_NO_OT_SHAPE`.
+If you are going down that route, check if you want `HB_NO_OT`.
 
 This is very rarely what you need.  Make sure you understand exactly what you
 are doing.
index c6a4080..e364a6a 100644 (file)
 #endif
 
 #ifdef HB_NO_OT
+#define HB_NO_OT_FONT
 #define HB_NO_OT_SHAPE
 #endif