From 182f52603c4cb27fe8a0a42299600068abf1ce8f Mon Sep 17 00:00:00 2001 From: qaqland Date: Mon, 2 Mar 2026 10:37:31 +0800 Subject: [PATCH] meson.build: bump sndfile version to 1.1.0 This commit follows 35817c0d850f71f02b3c0e43037d394c5b892caf Bump required sndfile version to 1.1.0 for SF_FORMAT_MPEG_LAYER and other formats added in commit 35817c0d8c. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index bca2c7a27..df1b412f8 100644 --- a/meson.build +++ b/meson.build @@ -368,7 +368,7 @@ cdata.set('HAVE_OPUS', opus_dep.found()) summary({'readline (for pw-cli)': readline_dep.found()}, bool_yn: true, section: 'Misc dependencies') cdata.set('HAVE_READLINE', readline_dep.found()) ncurses_dep = dependency('ncursesw', required : false) -sndfile_dep = dependency('sndfile', version : '>= 1.0.20', required : get_option('sndfile')) +sndfile_dep = dependency('sndfile', version : '>= 1.1.0', required : get_option('sndfile')) summary({'sndfile': sndfile_dep.found()}, bool_yn: true, section: 'pw-cat/pw-play/pw-dump/filter-chain') cdata.set('HAVE_SNDFILE', sndfile_dep.found()) pulseaudio_dep = dependency('libpulse', required : get_option('libpulse'))