lib/xiph/meson.build: fix typo, replace `and` with `or`
Fixes linker failure when building without FLAC support. Closes #400
This commit is contained in:
parent
f2c926f3b6
commit
6f242836e6
1
NEWS
1
NEWS
|
@ -3,6 +3,7 @@ ver 0.21.1 (not yet released)
|
|||
- allow escaping quotes in filter expressions
|
||||
* decoder
|
||||
- ffmpeg: fix build failure with non-standard FFmpeg installation path
|
||||
- flac: fix linker failure when building without FLAC support
|
||||
* fix build failure on Linux-PowerPC
|
||||
* fix build failure on FreeBSD
|
||||
* eliminate DLL dependencies on Windows
|
||||
|
|
|
@ -14,7 +14,7 @@ else
|
|||
libogg_dep = dependency('', required: false)
|
||||
endif
|
||||
|
||||
if not libogg_dep.found() or not libflac_dep.found()
|
||||
if not libogg_dep.found() and not libflac_dep.found()
|
||||
xiph_dep = dependency('', required: false)
|
||||
ogg_dep = dependency('', required: false)
|
||||
flac_dep = dependency('', required: false)
|
||||
|
|
Loading…
Reference in New Issue