summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2018-07-17 01:15:30 +0200
committerRan Benita <ran234@gmail.com>2018-07-17 09:30:43 +0300
commita3c907d3891bb275b9d2592d7a94d94020866b3c (patch)
tree897b718827db8c1e1cd0b05324fd4897531bcc03
parentc8e17eede52edb0b9a47fa1090b1ed68d9bf2158 (diff)
downloadxorg-lib-libxkbcommon-a3c907d3891bb275b9d2592d7a94d94020866b3c.tar.gz
meson: Fix xkbcommon-x11.pc Requires
The meson-generated pkgconfig file was missing Requires and Requires.private. [ran: adjust for older Meson versions.] Signed-off-by: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> Signed-off-by: Ran Benita <ran234@gmail.com>
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 7ee4f78..3935182 100644
--- a/meson.build
+++ b/meson.build
@@ -258,6 +258,8 @@ You can disable X11 support with -Denable-x11=false.''')
libraries: libxkbcommon_x11,
version: meson.project_version(),
description: 'XKB API common to servers and clients - X11 support',
+ requires: 'xkbcommon',
+ requires_private: 'xcb>=1.10 xcb-xkb>=1.10',
)
endif