meson: move gl pkgconfig generation out of glx
authorDylan Baker <dylan@pnwbakers.com>
Thu, 2 Nov 2017 23:51:40 +0000 (16:51 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 10 Nov 2017 21:00:01 +0000 (13:00 -0800)
Because the same generation logic is required by xlib glx and
gallium-xlib glx, it makes sense to pull it out.

v2: - Ensure that libgl is defined before trying to generate a pkgconfig
      file with it.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/glx/meson.build
src/meson.build

index 01ebc5677341117de598720ac7d3a1c6c41d80bf..43f8fb24efd0f866a0ee30fccb1b245f80cd47fa 100644 (file)
@@ -167,17 +167,6 @@ if with_glx == 'dri'
     version : gl_lib_version,
     install : true,
   )
-
-  pkg.generate(
-    name : 'gl',
-    filebase : 'gl',
-    description : 'Mesa OpenGL Library',
-    version : meson.project_version(),
-    libraries : libgl,
-    libraries_private : gl_priv_libs,
-    requires_private : gl_priv_reqs,
-    variables : ['glx_tls=yes'],
-  )
 endif
 
 if with_tests
index 186cf92f47eae4609fa2a926e5b656b178b6a172..53c8269a99edb975b1c6428116553ead3ad402c1 100644 (file)
@@ -66,3 +66,17 @@ if with_egl
   subdir('egl')
 endif
 subdir('gallium')
+
+# This must be after at least mesa, glx, and gallium, since libgl will be
+# defined in one of those subdirs depending on the glx provider.
+if with_glx != 'disabled'
+  pkg.generate(
+    name : 'gl',
+    description : 'Mesa OpenGL Library',
+    version : meson.project_version(),
+    libraries : libgl,
+    libraries_private : gl_priv_libs,
+    requires_private : gl_priv_reqs,
+    variables : ['glx_tls=yes'],
+  )
+endif