From a5e7250e734f9312f9a9acb085755e15d5c04861 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Fri, 6 Sep 2002 12:22:54 +0000 Subject: [PATCH] * input/test/empty-staffs.ly: new file. * Documentation/topdocs/INSTALL.texi: adds a bit of information about compiling in OpenBSD. (Graham Percival) --- ChangeLog | 9 ++++++++- Documentation/topdocs/INSTALL.texi | 16 ++++++++++++---- input/test/empty-staffs.ly | 23 +++++++++++++++++++++++ input/test/poly-metric.ly | 8 ++++++-- 4 files changed, 49 insertions(+), 7 deletions(-) create mode 100644 input/test/empty-staffs.ly diff --git a/ChangeLog b/ChangeLog index ee36be8ee4..0a1766e674 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ -2002-09-05 Han-Wen Nienhuys +2002-09-06 Han-Wen Nienhuys + + * input/test/empty-staffs.ly: new file. + + * Documentation/topdocs/INSTALL.texi: adds a bit of information + about compiling in OpenBSD. (Graham Percival) +2002-09-05 Han-Wen Nienhuys + * scm/documentation-lib.scm (scm->string): don't crash if a procedure doesn't have a name. diff --git a/Documentation/topdocs/INSTALL.texi b/Documentation/topdocs/INSTALL.texi index e5b295d705..e28586bdc0 100644 --- a/Documentation/topdocs/INSTALL.texi +++ b/Documentation/topdocs/INSTALL.texi @@ -1,4 +1,5 @@ -@node +@node Top, , , (dir) +@top @comment node-name, next, previous, up\input texinfo @c -*-texinfo-*- @setfilename INSTALL.info @settitle INSTALL - compiling and installing GNU LilyPond @@ -7,9 +8,6 @@ @end html -@node Top, , , (dir) -@top - @contents @chapter INSTALL - compiling and installing GNU LilyPond @@ -694,6 +692,16 @@ Guile without threads (YMMV): guile-1.4$ ./configure --without-threads; make all install @end example +@unnumberedsubsec OpenBSD + +@itemize @bullet +@item By default, gcc on OpenBSD doesn't include +@file{/usr/local/include} and @file{/usr/local/lib} in the system +paths. Depending upon where/how you installed kpathsea and other +libraries, you may need to refer to the section ``Linking to +kpathsea''. + +@end itemize @unnumberedsubsec NetBSD diff --git a/input/test/empty-staffs.ly b/input/test/empty-staffs.ly new file mode 100644 index 0000000000..6c6a0519c7 --- /dev/null +++ b/input/test/empty-staffs.ly @@ -0,0 +1,23 @@ +\header { + +texidoc = "Blank music paper, another example: empty staffs and a +tablature staff." + +} + +emptymusic = \notes { \repeat unfold 4 { s1\break } \bar "|." } + +\score { +\notes < + \context Staff \emptymusic + \context TabStaff \emptymusic + > + + + \paper { + \translator { + \ScoreContext + \remove Bar_number_engraver + } + } +} diff --git a/input/test/poly-metric.ly b/input/test/poly-metric.ly index d8e920375d..13ea702ef3 100644 --- a/input/test/poly-metric.ly +++ b/input/test/poly-metric.ly @@ -12,12 +12,16 @@ \property Staff.timeSignatureFraction = #'(4 . 4) \property Staff.measureLength = #(make-moment 1 1) \property Staff.beatLength = #(make-moment 1 4) - c1 c1 c1 } + c1 c1 c1 + \property Staff.whichBar = #"|." + } \context Staff= SB { \property Staff.timeSignatureFraction = #'(3 . 4) \property Staff.measureLength = #(make-moment 3 4) \property Staff.beatLength = #(make-moment 1 4) - c2. c2. c2. c2. } + c2. c2. c2. c2. + \property Staff.whichBar = #"|." + } > -- 2.39.5