]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 18 Apr 2005 14:57:41 +0000 (14:57 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 18 Apr 2005 14:57:41 +0000 (14:57 +0000)
ChangeLog
config.make.in
input/test/ancient-font.ly
stepmake/aclocal.m4

index 1359e3c6d2eeb4a3c9d5f87e864b328e96c13603..129621584585f2e4188ec397c2872a625b3dc99f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,12 @@
 
 2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * config.make.in (TTFTOOL_ENDIAN): rm TFM_PATH
+
+       * aclocal.m4: remove --enable-tfm-path configure option
+
+       * input/test/ancient-font.ly (lowerStaff): clef name errors.
+
        * scm/backend-library.scm (postscript->png): newline after
        finishing command.
 
index 971ab5c59d2a5ca62be69ac820d0da7046754942..ec381e6fc4291e641081eb8f5f3c3d2292f92aa9 100644 (file)
@@ -106,7 +106,6 @@ ROOTSEP = @ROOTSEP@
 SHELL = @SHELL@
 SPLITTING_MAKEINFO = @SPLITTING_MAKEINFO@
 TAR = @TAR@
-TFM_PATH = @TFM_PATH@
 TTFTOOL_ENDIAN = @TTFTOOL_ENDIAN@
 YACC = @YACC@
 ZIP = @ZIP@
index 5960389186616206a1365a33d11dcfc890418908..b038e1a0d7cf8a5414f2e22033a3ddca54b31a09 100644 (file)
@@ -263,7 +263,7 @@ lowerStaff = \context MensuralStaff = "lowerStaff" <<
            \override Custos #'style = #'mensural
            \override Custos #'neutral-position = #3
            \override Custos #'neutral-direction = #-1
-           clefGlyph = #"clefs.petrucci-c2"
+           clefGlyph = #"clefs.petrucci.c2"
            clefPosition = #-2
            clefOctavation = #0 
        }
@@ -281,7 +281,7 @@ lowerStaff = \context MensuralStaff = "lowerStaff" <<
            \override Custos #'style = #'vaticana
            \override Custos #'neutral-position = #4
            \override Custos #'neutral-direction = #-1
-           clefGlyph = #"clefs.vaticana-do"
+           clefGlyph = #"clefs.vaticana.do"
            clefPosition = #1
            clefOctavation = #0 
        }
index 31ddaed991943d0bc2c2166203e5daefb3a8070a..71b2f9f097f3227126012b7a295b39b16a578735 100644 (file)
@@ -994,36 +994,12 @@ AC_DEFUN(STEPMAKE_PYTHON_DEVEL, [
 ])
 
 
+
 AC_DEFUN(STEPMAKE_TEXMF_DIRS, [
-    AC_ARG_ENABLE(tfm-path,
-    [  --enable-tfm-path=PATH  set path of tex directories where tfm files live,
-                            esp.: cmr10.tfm.  Default: use kpsewhich],
-    [tfm_path=$enableval],
-    [tfm_path=auto] )
 
     # ugh
     STEPMAKE_PROGS(KPSEWHICH, kpsewhich, OPTIONAL)
-    AC_MSG_CHECKING(for tfm path)
-
-    TFM_FONTS="cmr msam"
-
-    if test "x$tfm_path" = xauto ; then
-       if test "x$KPSEWHICH" != "xno" ; then
-           for i in $TFM_FONTS; do
-               dir=`$KPSEWHICH tfm ${i}10.tfm`
-               TFM_PATH="$TFM_PATH `dirname $dir`"
-           done
-       else
-           STEPMAKE_WARN(Please specify where cmr10.tfm lives:
-    ./configure --enable-tfm-path=/usr/local/TeX/lib/tex/fonts)
-       fi
-    else
-         TFM_PATH=$tfm_path
-    fi
-
-    TFM_PATH=`echo $TFM_PATH | tr ':' ' '`
-    AC_MSG_RESULT($TFM_PATH)
-    AC_SUBST(TFM_PATH)
+   
 ])