lib/alsa/meson.build: require libasound 1.2 or later

This allows us to drop the 1.1.4 snd_pcm_drain() bug workaround (added
by commit f85d4d28d1).
This commit is contained in:
Max Kellermann
2024-07-29 15:41:26 +02:00
parent 3bef4f839a
commit 9c8f4aaf99
2 changed files with 2 additions and 37 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ if not is_linux
subdir_done()
endif
libasound_dep = dependency('alsa', version: '>= 1.1', required: get_option('alsa'))
libasound_dep = dependency('alsa', version: '>= 1.2', required: get_option('alsa'))
if not libasound_dep.found()
alsa_dep = dependency('', required: false)
subdir_done()