Re: [Mesa-dev] [PATCH v2 3/4] meson: fix getting cflags from pkg-config

2018-01-18 Thread Dylan Baker
Quoting Emil Velikov (2018-01-18 10:26:20) > On 17 January 2018 at 20:54, Greg V wrote: > > get_pkgconfig_variable('cflags') always returns an empty list, it's a > > function for getting *custom* variables. > > > > Meson does not yet support asking for cflags, so explicitly invoke > > pkg-config f

Re: [Mesa-dev] [PATCH v2 3/4] meson: fix getting cflags from pkg-config

2018-01-18 Thread Emil Velikov
On 17 January 2018 at 20:54, Greg V wrote: > get_pkgconfig_variable('cflags') always returns an empty list, it's a > function for getting *custom* variables. > > Meson does not yet support asking for cflags, so explicitly invoke > pkg-config for now. That sounds unfortunate ;-( Is the proposed so

Re: [Mesa-dev] [PATCH v2 3/4] meson: fix getting cflags from pkg-config

2018-01-18 Thread Dylan Baker
Reviewed-by: Dylan Baker Quoting Greg V (2018-01-17 12:54:17) > get_pkgconfig_variable('cflags') always returns an empty list, it's a > function for getting *custom* variables. > > Meson does not yet support asking for cflags, so explicitly invoke > pkg-config for now. > --- > meson.build | 10

[Mesa-dev] [PATCH v2 3/4] meson: fix getting cflags from pkg-config

2018-01-18 Thread Greg V
get_pkgconfig_variable('cflags') always returns an empty list, it's a function for getting *custom* variables. Meson does not yet support asking for cflags, so explicitly invoke pkg-config for now. --- meson.build | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meso