[Spice-devel] [PATCH spice-gtk 20/34] meson: switch lz4 option to auto feature
Christophe Fergeau
cfergeau at redhat.com
Tue Jan 8 08:58:45 UTC 2019
On Mon, Jan 07, 2019 at 11:19:11PM +0400, Marc-André Lureau wrote:
> Hi
>
> On Mon, Jan 7, 2019 at 7:58 PM Christophe Fergeau <cfergeau at redhat.com> wrote:
> >
> > On Mon, Jan 07, 2019 at 12:00:49PM +0400, marcandre.lureau at redhat.com wrote:
> > > From: Marc-André Lureau <marcandre.lureau at redhat.com>
> > >
> > > Contrary to spice server dependency, spice-gtk doesn't have a known
> > > minimum version requirement.
> >
> > Ideally, we'd still check for some not very old liblz4 to avoid compile
> > time failures, but the weird versioning does not make that easy :(
>
> Indeed, so do you ack that patch or you have more concerns about it?
Is it too tricky to keep the existing check?
Christophe
>
> >
> > Christophe
> >
> > >
> > > Signed-off-by: Marc-André Lureau <marcandre.lureau at redhat.com>
> > > ---
> > > .gitlab-ci.yml | 1 -
> > > meson.build | 10 +++-------
> > > meson_options.txt | 3 +--
> > > 3 files changed, 4 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> > > index 125dbd7..692374a 100644
> > > --- a/.gitlab-ci.yml
> > > +++ b/.gitlab-ci.yml
> > > @@ -45,7 +45,6 @@ makecheck_simple:
> > > makecheck_simple-meson:
> > > script:
> > > - meson build -Dauto_features=disabled
> > > - -Dlz4=false
> > > -Dsasl=false
> > > -Dsmartcard=false
> > > -Ddbus=false || (cat build/meson-logs/meson-log.txt && exit 1)
> > > diff --git a/meson.build b/meson.build
> > > index 4c9c05c..a5d584d 100644
> > > --- a/meson.build
> > > +++ b/meson.build
> > > @@ -287,13 +287,9 @@ endif
> > >
> > > # lz4
> > > spice_gtk_has_lz4 = false
> > > -if get_option('lz4')
> > > - lz4_dep = dependency('liblz4', required : false, version : '>= 129')
> > > - if not lz4_dep.found()
> > > - lz4_dep = dependency('liblz4', version : '>= 1.7.3')
> > > - endif
> > > -
> > > - spice_glib_deps += lz4_dep
> > > +d = dependency('liblz4', required : get_option('lz4'))
> > > +if d.found()
> > > + spice_glib_deps += d
> > > spice_gtk_config_data.set('USE_LZ4', '1')
> > > spice_gtk_has_lz4 = true
> > > endif
> > > diff --git a/meson_options.txt b/meson_options.txt
> > > index e92f931..abd0b0f 100644
> > > --- a/meson_options.txt
> > > +++ b/meson_options.txt
> > > @@ -63,8 +63,7 @@ option('alignment-checks',
> > > description : 'Enable runtime checks for cast alignment')
> > >
> > > option('lz4',
> > > - type : 'boolean',
> > > - value : true,
> > > + type : 'feature',
> > > description: 'Enable lz4 compression support')
> > >
> > > option('sasl',
> > > --
> > > 2.20.1.2.gb21ebb671b
> > >
> > > _______________________________________________
> > > Spice-devel mailing list
> > > Spice-devel at lists.freedesktop.org
> > > https://lists.freedesktop.org/mailman/listinfo/spice-devel
> > _______________________________________________
> > Spice-devel mailing list
> > Spice-devel at lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/spice-devel
>
>
>
> --
> Marc-André Lureau
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/spice-devel/attachments/20190108/ef528dfc/attachment.sig>
More information about the Spice-devel
mailing list