Skip to content

Commit

Permalink
Fix meson.build deprecations up to 0.56.0 (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte authored Oct 2, 2023
1 parent 3486cb0 commit 831ed6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# https://github.com/linuxmint/cinnamon-desktop
project('cinnamon-desktop', 'c', version: '5.8.0',
meson_version: '>=0.50.0'
meson_version: '>=0.56.0'
)

# Before making a release, the LT_VERSION string should be modified.
Expand Down Expand Up @@ -57,7 +57,7 @@ cinnamon_deps = [

use_alsa = get_option('alsa')

xkb_base = xkbconf.get_pkgconfig_variable('xkb_base')
xkb_base = xkbconf.get_variable(pkgconfig: 'xkb_base')

# Path to the pnp.ids file -- to know if we use one shipped with another
# package, or an internal file
Expand Down Expand Up @@ -129,7 +129,7 @@ message('\n'.join([
' sysconfdir: ' + get_option('sysconfdir'),
' localstatedir: ' + get_option('localstatedir'),
' datadir: ' + get_option('datadir'),
' source code location: ' + meson.source_root(),
' source code location: ' + meson.project_source_root(),
' compiler: ' + cc.get_id(),
' debugging support: ' + get_option('buildtype'),
' Use *_DISABLE_DEPRECATED: @0@'.format(get_option('deprecation_warnings')),
Expand Down

0 comments on commit 831ed6d

Please sign in to comment.