]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-config.cc
* stepmake/stepmake/*:
[lilypond.git] / lily / font-config.cc
index 2c1dfb0a3414f31d6883df2a864eafc67e50725d..c15f94f87e3866982eac21d1e1776ec9c71f9be4 100644 (file)
@@ -23,25 +23,20 @@ init_fontconfig ()
 {
   if (be_verbose_global)
     message (_ ("Initializing FontConfig..."));
-  
+
   if (!FcInit ())
     error (_ ("initializing FontConfig failed"));
 
-
-  
   font_config_global = FcConfigGetCurrent ();
   Array<String> dirs;
-  struct stat statbuf; 
-  String builddir = prefix_directory + "/mf/out/";
 
-  if (stat (builddir.to_str0 (), &statbuf) == 0)
-    dirs.push (builddir.to_str0 ());
-  else
-    {
-      dirs.push (prefix_directory + "/fonts/otf/");
-      dirs.push (prefix_directory + "/fonts/type1/");
-      dirs.push (prefix_directory + "/fonts/svg/");
-    }
+  /*
+    ugh. C&P main.cc
+  */
+  dirs.push (prefix_directory + "/fonts/otf/");
+  dirs.push (prefix_directory + "/fonts/type1/");
+  dirs.push (prefix_directory + "/fonts/cff/");
+  dirs.push (prefix_directory + "/fonts/svg/");
   
   for (int i = 0; i < dirs.size (); i++)
     {
@@ -61,7 +56,6 @@ init_fontconfig ()
 void
 init_fontconfig ()
 {
-  
 }
 
 #endif