Skip to content

Commit 29c4466

Browse files
Bump Meson version requirement to 0.53
1 parent 2264eb8 commit 29c4466

1 file changed

Lines changed: 18 additions & 20 deletions

File tree

meson.build

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('audacious', 'c', 'cpp',
22
version: '4.6-devel',
3-
meson_version: '>= 0.46',
3+
meson_version: '>= 0.53',
44
default_options: [
55
'c_std=gnu99',
66
'cpp_std=gnu++17',
@@ -235,22 +235,20 @@ pkg.generate(
235235
)
236236

237237

238-
if meson.version().version_compare('>= 0.53')
239-
summary({
240-
'Prefix': get_option('prefix'),
241-
'Bin dir': get_option('bindir'),
242-
'Lib dir': get_option('libdir'),
243-
'Data dir': get_option('datadir'),
244-
}, section: 'Directories')
245-
246-
summary({
247-
'D-Bus support': get_option('dbus'),
248-
'Qt 5 support': get_option('qt5'),
249-
'Qt 6 support': get_option('qt') and not get_option('qt5'),
250-
'GTK 2 support': get_option('gtk2'),
251-
'GTK 3 support': get_option('gtk') and not get_option('gtk2'),
252-
'Libarchive support': get_option('libarchive'),
253-
'Valgrind analysis support': get_option('valgrind'),
254-
'Build stamp': get_option('buildstamp'),
255-
}, section: 'Configuration')
256-
endif
238+
summary({
239+
'Prefix': get_option('prefix'),
240+
'Bin dir': get_option('bindir'),
241+
'Lib dir': get_option('libdir'),
242+
'Data dir': get_option('datadir'),
243+
}, section: 'Directories')
244+
245+
summary({
246+
'D-Bus support': get_option('dbus'),
247+
'Qt 5 support': get_option('qt5'),
248+
'Qt 6 support': get_option('qt') and not get_option('qt5'),
249+
'GTK 2 support': get_option('gtk2'),
250+
'GTK 3 support': get_option('gtk') and not get_option('gtk2'),
251+
'Libarchive support': get_option('libarchive'),
252+
'Valgrind analysis support': get_option('valgrind'),
253+
'Build stamp': get_option('buildstamp'),
254+
}, section: 'Configuration')

0 commit comments

Comments
 (0)