freebsd-ports/www/iridium/files/patch-media_media__options.gni
Robert Nagy 9c709a1d6b www/iridium: update to 2023.04.112
Approved by:	rene (mentor)
Differential Revision:	https://reviews.freebsd.org/D39769
2023-04-23 20:24:00 +02:00

30 lines
951 B
Text

--- media/media_options.gni.orig 2023-04-22 17:45:15 UTC
+++ media/media_options.gni
@@ -188,12 +188,15 @@ declare_args() {
# Enables runtime selection of ALSA library for audio.
use_alsa = false
+ # Enable runtime selection of sndio(7)
+ use_sndio = false
+
# Alsa should be used on all non-Android, non-Mac POSIX systems - with the
# exception of CastOS desktop builds.
#
# TODO(crbug.com/1336055): Remove legacy target_cpu hack used for targeting
# desktop Chromecast builds.
- if (is_posix && !is_android && !is_apple &&
+ if (is_posix && !is_android && !is_apple && !is_bsd &&
(!is_castos || (target_cpu == "x86" || target_cpu == "x64") ||
is_cast_audio_only)) {
use_alsa = true
@@ -209,6 +212,10 @@ declare_args() {
if (!use_cras && !is_castos && !is_asan && !is_tsan) {
use_pulseaudio = true
}
+ }
+ if (is_openbsd) {
+ use_sndio = true
+ use_pulseaudio = false
}
}