Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Build-Depends:
libxrandr-dev,
libxrender-dev,
libxt-dev,
meson (>= 0.50),
meson (>= 1.0.0),
pkg-config (>= 0.22),
udev [linux-any],
wayland-protocols (>= 1.23) [linux-any],
Expand Down
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('muffin', 'c', version : '6.4.1', meson_version : '>=0.56.0', license : 'GPLv2+')
project('muffin', 'c', version : '6.4.1', meson_version : '>=1.0.0', license : 'GPLv2+')

muffin_plugin_api_version = '3'

Expand Down Expand Up @@ -385,7 +385,7 @@ if have_wayland
xwayland_path = get_option('xwayland_path')
if xwayland_path == ''
if xwayland_dep.found()
xwayland_path = xwayland_dep.get_pkgconfig_variable('xwayland')
xwayland_path = xwayland_dep.get_variable('xwayland')
else
xwayland_path = find_program('Xwayland').full_path()
endif
Expand All @@ -404,7 +404,7 @@ if have_wayland
# For Xwayland -initfd usage
use_initfd = get_option('xwayland_initfd')
if xwayland_dep.found()
xwayland_supports_initfd = xwayland_dep.get_pkgconfig_variable('have_initfd') == 'true'
xwayland_supports_initfd = xwayland_dep.get_variable('have_initfd') == 'true'
else
xwayland_options = run_command(xwayland_path, '-help')
xwayland_supports_initfd = xwayland_options.stderr().contains('-initfd')
Expand All @@ -422,7 +422,7 @@ if have_wayland

# For Xwayland -listenfd usage
if xwayland_dep.found()
have_xwayland_listenfd = xwayland_dep.get_pkgconfig_variable('have_listenfd') == 'true'
have_xwayland_listenfd = xwayland_dep.get_variable('have_listenfd') == 'true'
endif

if (have_xwayland_listenfd)
Expand Down
Loading