mirror of https://github.com/xemu-project/xemu.git
meson: remove pointless warnings
Meson tests sometimes warn if the required libraries and headers are present but a test program fails to link. In the case of DirectSound and OSS, however, there is no test program so there is no need to warn. Reported-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ab486f165b
commit
78cb330e91
|
@ -924,8 +924,6 @@ if have_system and not get_option('oss').disabled()
|
||||||
if not oss.found()
|
if not oss.found()
|
||||||
if get_option('oss').enabled()
|
if get_option('oss').enabled()
|
||||||
error('OSS not found')
|
error('OSS not found')
|
||||||
else
|
|
||||||
warning('OSS not found, disabling')
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -938,8 +936,6 @@ if not get_option('dsound').auto() or (targetos == 'windows' and have_system)
|
||||||
if not dsound.found()
|
if not dsound.found()
|
||||||
if get_option('dsound').enabled()
|
if get_option('dsound').enabled()
|
||||||
error('DirectSound not found')
|
error('DirectSound not found')
|
||||||
else
|
|
||||||
warning('DirectSound not found, disabling')
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue