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.
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
is more than fifteen years and Amadeus has been running under
different Unix clones. It uses MIDI-keyboard input
-
-
=back
-
=head2 Unknown
=item MusE
[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],
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)
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 ;
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;
}