output/shout: declare minimum version 2.4.0
This version was released 7 years ago, and it's reasonable to require at least this version.
This commit is contained in:
parent
e08c13ad7e
commit
c779fc37eb
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
||||||
ver 0.23.7 (not yet released)
|
ver 0.23.7 (not yet released)
|
||||||
* decoder
|
* decoder
|
||||||
- opus: fix missing song length on high-latency files
|
- opus: fix missing song length on high-latency files
|
||||||
|
* output
|
||||||
|
- shout: require at least libshout 2.4.0
|
||||||
* mixer
|
* mixer
|
||||||
- software: update volume of disabled outputs
|
- software: update volume of disabled outputs
|
||||||
* support libiconv
|
* support libiconv
|
||||||
|
|
|
@ -99,7 +99,7 @@ if get_option('recorder')
|
||||||
need_encoder = true
|
need_encoder = true
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libshout_dep = dependency('shout', required: get_option('shout'))
|
libshout_dep = dependency('shout', version: '>= 2.4.0', required: get_option('shout'))
|
||||||
output_features.set('HAVE_SHOUT', libshout_dep.found())
|
output_features.set('HAVE_SHOUT', libshout_dep.found())
|
||||||
if libshout_dep.found()
|
if libshout_dep.found()
|
||||||
output_plugins_sources += 'ShoutOutputPlugin.cxx'
|
output_plugins_sources += 'ShoutOutputPlugin.cxx'
|
||||||
|
|
Loading…
Reference in New Issue