diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-09-09 22:43:56 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-09-09 22:43:56 +0200 |
commit | 099a6979e4bbac6650af2b2a6963423e73f3d12b (patch) | |
tree | ef3181abfda13cb6d45b690470fa86b4e4c759d2 | |
parent | 30098118b3604ea4568e29e19b65f69abebcbba3 (diff) | |
download | atk-099a6979e4bbac6650af2b2a6963423e73f3d12b.tar.gz |
Make atk.pc require glib
atkutil.h uses several glib/gobject functions in macros, so the caller will
have to link against glib, atk.pc thus has to explicit this.
-rw-r--r-- | atk/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/atk/meson.build b/atk/meson.build index 4760df8..dcde8a4 100644 --- a/atk/meson.build +++ b/atk/meson.build @@ -163,4 +163,5 @@ pkgconfig.generate(libatk, description: 'Accessibility Toolkit', subdirs: atk_api_name, filebase: 'atk', + requires: glib_dep, ) |