Re: Fix build failure on GNU Hurd (issue 319400043 by pkx1...@gmail.com)

2017-02-25 Thread Felix Janda
The fix probably breaks compilation on everything not using glibc: get_current_dir_name() is glibc specific, and not available on other systems, so its invocation should be protected with an #ifdef __GLIBC__ or via an autoconf test. As indicated in the man page, even on glibc, to use this functio

Re: Make \upbow an empty command + Segmentation fault

2014-06-14 Thread Felix Janda
Dan Eble wrote: [..] > I’m sorry I haven’t spent time to thoroughly understand your needs, > but it sounds like there is a chance that something derived from this > (which I have actually used) would help: > > stripArticulation = > #(define-music-function > (parser location music) (ly:music?) >

Re: Make \upbow an empty command + Segmentation fault

2014-06-14 Thread Felix Janda
David Kastrup wrote: > James writes: > > > On 12/04/14 14:22, Felix Janda wrote: > >> Hi, > >> > >> say I have a violin part with bowing instructions in a variable. Now I want > >> to use the same variable in the full orchestral scor

[PATCH] Add missing include for ssize_t

2014-02-12 Thread Felix Janda
Makes lilypond compile with musl libc --- flower/include/polynomial.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/flower/include/polynomial.hh b/flower/include/polynomial.hh index 927b567..1724ab8 100644 --- a/flower/include/polynomial.hh +++ b/flower/include/polynomial.hh @@ -24,6 +24,7

Re: Lilypond command line syntax

2013-03-03 Thread Felix Janda
On 03/03/13 at 04:18pm, Phil Holmes wrote: > We're in dir Test. > Get a list of all lilypond files that are currently in Test/input > Use that list of files to run lilypond, with all output PNGs going to > Test/Pix and including file Test/include.ly. The .png files should use the > root filename

Remove version 2.12 specific parts from create-weblinks-itexi.py

2013-02-10 Thread Felix Janda
Hi, when grepping for things which look like version numbers I noticed some version 2.12 specific code in scripts/build/create-weblinks-itexi.py. The attached patch removes code which won't be executed in lilypond versions other than 2.12. Felix diff --git a/scripts/build/create-weblinks-itexi.p