From: fred Date: Wed, 27 Mar 2002 02:04:22 +0000 (+0000) Subject: lilypond-1.5.24 X-Git-Tag: release/1.5.59~393 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=858c6feba52b42a7e32f1ded68ad3f53d86920c1;p=lilypond.git lilypond-1.5.24 --- diff --git a/Documentation/topdocs/INSTALL.texi b/Documentation/topdocs/INSTALL.texi index e542171569..61cf08e3b9 100644 --- a/Documentation/topdocs/INSTALL.texi +++ b/Documentation/topdocs/INSTALL.texi @@ -531,7 +531,7 @@ interfere with your build, you may want to do this before the build too: @end example - +@c Why isn't this in BUGS (where it belongs?) @section Problems For help and questions use @email{lilypond-user@@gnu.org}. Please @@ -554,6 +554,21 @@ LilyPond with gcc-3.0 you may do: Note that this is fixed in Debian/unstable for flex >= 2.5.4a-13. + + +@unnumberedsubsec Linux-2.4.0, Guile-1.4 --with-threads + +There's a bug in certain kernels around version 2.4.0, that is +triggered when using Guile 1.4 compiled with pthreads. You'll see +random segmentation fault crashes of LilyPond. Upgrade to a newer +version of Linux. If you can't do that, you may try to recompiling +Guile without threads (YMMV): + +@example + guile-1.4$ ./configure --without-threads; make all install +@end example + + @unnumberedsubsec NetBSD @itemize @bullet diff --git a/input/test/beam-pos.ly b/input/test/beam-pos.ly index 14b92742d8..2917db77dd 100644 --- a/input/test/beam-pos.ly +++ b/input/test/beam-pos.ly @@ -5,6 +5,7 @@ filename = "beam-pos.ly" composer = "jcn" enteredby = "jcn" copyright = "PD" +title = "Beam quantization" TestedFeatures = "beam quant positions" } diff --git a/scm/basic-properties.scm b/scm/basic-properties.scm index 7f02a51e5d..e3c781c1bc 100644 --- a/scm/basic-properties.scm +++ b/scm/basic-properties.scm @@ -27,6 +27,7 @@ '((":|:" . (":|" . "|:")) ("||:" . ("||" . "|:")) ("|" . ("|" . "")) + ("||:" . ("||" . "|:")) ("|s" . (nil . "|")) ("|:" . ("|" . "|:")) ("|." . ("|." . nil)) diff --git a/scm/beam.scm b/scm/beam.scm index f7afad28fc..b0feb6008f 100644 --- a/scm/beam.scm +++ b/scm/beam.scm @@ -95,6 +95,8 @@ (define (beam-dir-majority count total) (dir-compare (car count) (cdr count))) +(beam-dir-majority '(0 . 0) '(0 . 0)) + (define (beam-dir-mean count total) (dir-compare (car total) (cdr total))) diff --git a/stepmake/bin/add-html-footer.py b/stepmake/bin/add-html-footer.py index 744c6ac509..fe15316b41 100644 --- a/stepmake/bin/add-html-footer.py +++ b/stepmake/bin/add-html-footer.py @@ -40,7 +40,7 @@ of @PACKAGE_NAME@ built = r"""

-This page was built from @PACKAGE_NAME@-@PACKAGE_VERSION@ by
+This page was built from @PACKAGE_NAME@-@PACKAGE_VERSION@ (@BRANCH@) by

@GCOS@ <@MAILADDRESS@>, @LOCALTIME@.
""" @@ -218,6 +218,7 @@ def do_file (f): else: s = s + footer + #URUGRGOUSNGUOUNRIU index = index_url top = top_url @@ -231,6 +232,12 @@ def do_file (f): # index = "./index.html" # top = "./" + + versiontup = string.split(package_version, '.') + branch_str = 'stable-branch' + if string.atoi ( versiontup[1]) % 2: + branch_str = 'development-branch' + s = re.sub ('@INDEX@', index, s) s = re.sub ('@TOP@', top, s) s = re.sub ('@PACKAGE_NAME@', package_name, s) @@ -239,7 +246,8 @@ def do_file (f): s = re.sub ('@GCOS@', gcos, s) s = re.sub ('@LOCALTIME@', localtime, s) s = re.sub ('@MAILADDRESS@', mail_address, s) - + s = re.sub ('@BRANCH@', branch_str, s) + m = re.match ('.*?', s, re.DOTALL) while m: at_var = m.group (1)