bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Better support of guile v2 in configure.ac


From: David Kastrup
Subject: Re: Better support of guile v2 in configure.ac
Date: Sat, 25 Jun 2016 15:26:13 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

"Dr. Tobias Quathamer" <address@hidden> writes:

> Hi,
>
> I'm currently working on a Debian package of the current unstable
> lilypond version. I suggest the following patch to configure.ac, similar
> to the version check in STEPMAKE_GUILE_DEVEL a couple of lines above.
> Without this patch, at least for me the build fails if guile-1.8 is not
> available on the system.
>
> Regards,
> Tobias
>
> --- a/configure.ac
> +++ b/configure.ac
> @@ -219,7 +219,13 @@
>  STEPMAKE_WINDOWS
>  
>  # guile executable for some scripts
> -STEPMAKE_GUILE(OPTIONAL, 1.8.2, 1.9.0)
> +if test "$GUILEv2" = "yes"
> +then
> +    STEPMAKE_GUILE(OPTIONAL, 2.0.7, 2.2.0)
> +else
> +    STEPMAKE_GUILE(OPTIONAL, 1.8.2, 1.9.0)
> +fi
> +

STEPMAKE_GUILE(OPTIONAL, 1.8.2, 2.2.0)

should be just fine without added conditionals.  It would appear that
this only concerns lilypond-invoke-editor and its code does not look to
me as if it would have a problem running with Guile-v2.

-- 
David Kastrup



reply via email to

[Prev in Thread] Current Thread [Next in Thread]