Skip to content

Commit

Permalink
Fix meson.build deprecations up to 0.56.0 (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte authored Oct 2, 2023
1 parent d6b2166 commit 337ea8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('cinnamon-screensaver', 'c', version: '5.8.1', meson_version: '>=0.46.0')
project('cinnamon-screensaver', 'c', version: '5.8.1', meson_version: '>=0.56.0')

cc = meson.get_compiler('c')

Expand Down Expand Up @@ -50,7 +50,7 @@ if not xdo.found()
xdo = cc.find_library('xdo')
endif

dbus_services_dir = dependency('dbus-1').get_pkgconfig_variable('session_bus_services_dir', define_variable: ['datadir', datadir])
dbus_services_dir = dependency('dbus-1').get_variable(pkgconfig: 'session_bus_services_dir', pkgconfig_define: ['datadir', datadir])

# check for symbols and headers
foreach header : [
Expand Down

0 comments on commit 337ea8b

Please sign in to comment.