[Spice-devel] [PATCH spice-gtk 28/34] meson: switch vapi to auto feature

Marc-André Lureau marcandre.lureau at gmail.com
Mon Jan 7 19:15:55 UTC 2019


On Mon, Jan 7, 2019 at 8:21 PM Christophe Fergeau <cfergeau at redhat.com> wrote:
>
> On Mon, Jan 07, 2019 at 12:00:57PM +0400, marcandre.lureau at redhat.com wrote:
> > From: Marc-André Lureau <marcandre.lureau at redhat.com>
> >
> > Removed unused vapigen/vapidir variables as well.
> >
> > Signed-off-by: Marc-André Lureau <marcandre.lureau at redhat.com>
> > ---
> >  meson.build       | 9 +++++----
> >  meson_options.txt | 3 +--
> >  2 files changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/meson.build b/meson.build
> > index 9896151..7e0c68d 100644
> > --- a/meson.build
> > +++ b/meson.build
> > @@ -279,10 +279,11 @@ endif
> >
> >  # vala (depends on introspection)
> >  spice_gtk_has_vala = false
> > -if spice_gtk_has_introspection and get_option('vapi')
> > -  vapigen_dep = dependency('vapigen')
> > -  vapidir = vapigen_dep.get_pkgconfig_variable('vapidir')
> > -  vapigen = dependency('vapigen').get_pkgconfig_variable('vapigen')
> > +d = dependency('vapigen', required : get_option('vapi'))
> > +if d.found()
> > +  if not spice_gtk_has_introspection
> > +    error('VAPI support requested without introspection')
> > +  endif
>
> I'd be a bit more sophisticated here in order to handle 'auto', maybe
> something like this:
>
> if not spice_gtk_has_introspection:
>     if get_option('vapi').enabled()
>         error('VAPI support requested without introspection')
>     endif
>     spice_gtk_has_vala = false
> endif
> spice_gtk_has_vala = true

That wouldn't work if vapi is enabled and introspection is disabled.

I don't think the build-sys needs to be that smart for "auto"
features. Or it could be improved later.

>
>
> Christophe
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel



-- 
Marc-André Lureau


More information about the Spice-devel mailing list