]> git.donarmstrong.com Git - lilypond.git/commitdiff
* input/test/empty-staffs.ly: new file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 6 Sep 2002 12:22:54 +0000 (12:22 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 6 Sep 2002 12:22:54 +0000 (12:22 +0000)
* Documentation/topdocs/INSTALL.texi: adds a bit of information
about compiling in OpenBSD. (Graham Percival)

ChangeLog
Documentation/topdocs/INSTALL.texi
input/test/empty-staffs.ly [new file with mode: 0644]
input/test/poly-metric.ly

index ee36be8ee4ec9ab2e28a5c6daddceed6b1380dc8..0a1766e67407b437c016f74016971b4a02951696 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
-2002-09-05  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+2002-09-06  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * 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  <hanwen@cs.uu.nl>
+       
        * scm/documentation-lib.scm (scm->string): don't crash if a
        procedure doesn't have a name.
 
index e5b295d705bd00fef3388ec5d6a2bfb83c13cce1..e28586bdc0d1a71dd26b1466f05111f920b69bd7 100644 (file)
@@ -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 @@
 <!--- @@WEB-TITLE@@=Installation Instructions --->
 @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 (file)
index 0000000..6c6a051
--- /dev/null
@@ -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
+    }
+  }
+}
index d8e920375d4f48c66ea469a4b27baab7c77ad5de..13ea702ef3ce061b3a131f562127ca523dd40c22 100644 (file)
        \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 = #"|."
+    }
 
     >