From: fred Date: Tue, 26 Mar 2002 21:47:56 +0000 (+0000) Subject: lilypond-1.1.35 X-Git-Tag: release/1.5.59~2543 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=36bd89ee8d43e9f61573fd3247b38b6437761b28;p=lilypond.git lilypond-1.1.35 --- diff --git a/Documentation/faq.yo b/Documentation/faq.yo index a7694846c9..b7278b5206 100644 --- a/Documentation/faq.yo +++ b/Documentation/faq.yo @@ -22,6 +22,14 @@ It does em(not) work with windows 3.x; you need Windows-NT (95/98?). This is not a recommendation, however. We recommend you use Unix, in particular, use GNU/Linux. For further information see file(README-W32). +question(Where is guile-config) + +RedHat RPMS don't include guile-config. You need guile-config as it +was produced during the RPM build run. Build the RPM from source +(file(.src.rpm)), and use the guile-config that is in +file(/usr/src/redhat/BUILD/guile-1.3/guile-config/). + + question(I get all kinds of errors while compiling file(parser.cc)) LilyPond uses features of bison version 1.25. Please confirm that diff --git a/lily/midi-item.cc b/lily/midi-item.cc index a753b7cc9f..9d09226f7e 100644 --- a/lily/midi-item.cc +++ b/lily/midi-item.cc @@ -425,11 +425,7 @@ Midi_note::str () const String str = to_str ((char)status_byte); str += to_str ((char) (pitch_i () + c0_pitch_i_c_)); -#if 0 - // poor man's staff dynamics: - str += to_str ((char) (dynamic_byte_ - 0x10 * channel_i_)); -#endif - + str += to_str ((char)dynamic_byte_); return str; }