Re: [Mesa-dev] [PATCH v3 04/12] meson: fix getting cflags from pkg-config

2018-01-24 Thread Dylan Baker
Reviewed-by: Dylan Baker Quoting Greg V (2018-01-24 10:02:42) > 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 v3 04/12] meson: fix getting cflags from pkg-config

2018-01-24 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