From f1d5f2aff34665379d859ce6ec7ee690046795f9 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 18 Apr 2018 13:09:07 -0700 Subject: [PATCH] meson: always define libglapi This allows the identifier to be used even if shared-glapi isn't build, which simplifies a bunch of things. Signed-off-by: Dylan Baker Reviewed-by: Eric Anholt --- src/mapi/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mapi/meson.build b/src/mapi/meson.build index 8b1b7ba..2c79a04 100644 --- a/src/mapi/meson.build +++ b/src/mapi/meson.build @@ -32,6 +32,8 @@ mapi_abi_py = files('mapi_abi.py') subdir('glapi') if with_shared_glapi subdir('shared-glapi') +else + libglapi = [] endif if not with_glvnd if with_gles1 -- 2.7.4