X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpango-font.cc;h=1a80ee989c7628fa64206c553494d264bc5a60ca;hb=8659a99f233f5c4684292728e7ad4206669b35b0;hp=024d7b1d576f94bd731f1186351c26832da2fafe;hpb=8cf69a467ad7650f5ca9da6fe2dfd4c7c088b239;p=lilypond.git diff --git a/lily/pango-font.cc b/lily/pango-font.cc index 024d7b1d57..1a80ee989c 100644 --- a/lily/pango-font.cc +++ b/lily/pango-font.cc @@ -400,11 +400,17 @@ Pango_font::text_stencil (Output_def * /* state */, if (!features_str.empty()) { +#if HAVE_PANGO_FT2_WITH_OTF_FEATURE PangoAttrList *list = pango_attr_list_new(); PangoAttribute *features_attr = pango_attr_font_features_new(features_str.c_str()); pango_attr_list_insert(list, features_attr); pango_layout_set_attributes(layout, list); pango_attr_list_unref(list); +#else + warning (_f ("OpenType font feature `%s' cannot be used" + " since this binary is configured without feature support.", + features_str.c_str ())); +#endif } pango_layout_set_text (layout, str.c_str (), -1);