diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2019-01-08 15:59:57 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2019-01-08 16:14:17 +0100 |
commit | 3693f6f63080cffb9893f6c9248c71f7fcc7eea3 (patch) | |
tree | 668e539c475cc7073d76d8337ed8c921b4c840c2 /meson.build | |
parent | ebfc6184b2457952db71948ab27cfab05546db7d (diff) | |
download | mutter-3693f6f63080cffb9893f6c9248c71f7fcc7eea3.tar.gz |
build: Use plain libcanberra instead of libcanberra-gtk3
We no longer use the gtk-aware ca_context, the dependency can be lowered
now.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 1a566d15d..2ca0b4020 100644 --- a/meson.build +++ b/meson.build @@ -26,7 +26,7 @@ xfixes_req = '>= 3' xi_req = '>= 1.6.99.1' xrandr_req = '>= 1.5.0' libstartup_notification_req = '>= 0.7' -libcanberra_gtk3_req = '>= 0.26' +libcanberra_req = '>= 0.26' libwacom_req = '>= 0.13' atk_req = '>= 2.5.3' @@ -117,7 +117,7 @@ xcb_res_dep = dependency('xcb-res') xinerama_dep = dependency('xinerama') ice_dep = dependency('ice') atk_dep = dependency('atk', version: atk_req) -libcanberra_gtk3_dep = dependency('libcanberra-gtk3', version: libcanberra_gtk3_req) +libcanberra_dep = dependency('libcanberra', version: libcanberra_req) # For now always require X11 support have_x11 = true |