X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffont-config.cc;h=39ae3c2a76c7c64d69d7ceebc7d2e08319ad4416;hb=9d8942c954e7d44d121c89719aceb91cf83d51ed;hp=afa210a7ad4faba7d0ea887d4ee4634e10138333;hpb=18037c60a42e96cf61b13006bb391e3699bdc45e;p=lilypond.git diff --git a/lily/font-config.cc b/lily/font-config.cc index afa210a7ad..39ae3c2a76 100644 --- a/lily/font-config.cc +++ b/lily/font-config.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2006 Han-Wen Nienhuys + (c) 2005--2007 Han-Wen Nienhuys */ #include "config.hh" @@ -30,9 +30,11 @@ init_fontconfig () font_config_global = FcInitLoadConfig (); FcChar8 *cache_file = FcConfigGetCache (font_config_global); +#if 0 + // always returns 0 for FC 2.4 if (!cache_file) programming_error ("Cannot find file for FontConfig cache."); - +#endif /* This is a terrible kludge, but there is apparently no way for FontConfig to signal whether it needs to rescan directories. @@ -43,8 +45,10 @@ init_fontconfig () vector dirs; - dirs.push_back (prefix_directory + "/fonts/otf/"); - dirs.push_back (prefix_directory + "/fonts/type1/"); + /* Extra trailing slash suddenly breaks fontconfig (fc-cache 2.5.0) + on windows. */ + dirs.push_back (lilypond_datadir + "/fonts/otf"); + dirs.push_back (lilypond_datadir + "/fonts/type1"); for (vsize i = 0; i < dirs.size (); i++) {