]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.16
authorfred <fred>
Sun, 24 Mar 2002 19:58:31 +0000 (19:58 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:58:31 +0000 (19:58 +0000)
Documentation/other-packages.pod
configure.in
lily/main.cc

index 49c2e7dbe45da8d2f865225ff904a3d6d646db54..c0acbb555ed4ce57d35969d8d45c2d6a34315b65 100644 (file)
@@ -59,7 +59,7 @@ After quarrels,  MusiXTeX has been split into two branches:
 Daniel Taupin's now maintains the branch that still carries 
 the name MusiXTeX.
 
-=item OpusTeX, http://www.inf.ethz.ch/people/achermann/opustex
+=item OpusTeX, http://www.inf.ethz.ch/personal/achermann/
 
 Andreas Egler's branch is called MusiXTeX.
 
@@ -117,6 +117,10 @@ Notation editor for W95 and Mac
 Notation editor on Acorn machines.  Their developers call it ``best
 notation program available''.
 
+=item Ikarus,
+
+The music-engraving system described by [Wanske]
+
 =item Finale
 
 =item Score
@@ -142,11 +146,8 @@ batch program (like LilyPond).  It is aimed at publishers. Its history
 is more than fifteen years and Amadeus has been running under
 different Unix clones.  It uses MIDI-keyboard input
 
-
-
 =back
 
-
 =head2 Unknown
 
 =item MusE
index e3e93c03bd5262ceefa0d233d50c2c8e27b35967..2e0c385e877ab5c6a1c7f173996a0a9cd9aa3681 100644 (file)
@@ -62,10 +62,10 @@ AC_ARG_ENABLE(tex-dir,
     [TEXDIR=$enableval],
     [TEXDIR=auto] )
 
-AC_JUNK_ARGS( AC_ARG_ENABLE(mf-dir,
+AC_ARG_ENABLE(mf-dir,
      [  mf-dir=DIR             set the directory to put LilyPond MetaFont files in. (obsolete)],
      [MFDIR=$enableval],
-     [MFDIR=auto] ))
+     [MFDIR=auto])
 
 AC_ARG_ENABLE(out-dir,
     [  out-dir                 set the directory for machine generated files. Default out or out-HOST],
@@ -153,6 +153,10 @@ if test "x$TEXPREFIX" = xauto ; then
 else
  find_texprefix=$TEXPREFIX
 fi
+
+if test "x$MFDIR" = xauto; then
+    AC_MF_SUBDIR(MFDIR)
+fi
     
 if test "x$TEXDIR" = xauto ; then
     AC_TEX_SUBDIR(TEXDIR)
index efba1f0c296c8ceba3dfef5cc2a51bf306065931..4727f337d6d98859fd793e027c6c55e854822d19 100644 (file)
@@ -106,12 +106,12 @@ static File_path path;
 void
 do_one_file (String init_str, String file_str)
 {
-  if (init_str && "" == path.find (init_str)) 
+  if (init_str.length_i () && path.find (init_str).empty_b ()) 
     {
       error ("Can not find `" + init_str +"\'");
       return ;
     }
-  if (file_str && !path.find (file_str))
+  if (file_str.length_i () && path.find (file_str).empty_b ())
     {
       error ("Can not find `" + file_str + "'");
       return ;
@@ -216,7 +216,7 @@ destill_inname (String &name_str_r)
          split_path (name_str_r,a,b,c,d);
 
          // add extension if not present.
-         if (!d
+         if (d.empty_b ()
            d = ".ly";
          name_str_r = a+b+c+d;
        }