mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
Approved by: rene (mentor) Security: https://vuxml.freebsd.org/freebsd/310ca30e-a951-11ed-8314-a8a1599412c6.html
30 lines
947 B
Text
30 lines
947 B
Text
--- media/media_options.gni.orig 2023-02-08 09:03:45 UTC
|
|
+++ media/media_options.gni
|
|
@@ -172,12 +172,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_mac &&
|
|
+ if (is_posix && !is_android && !is_mac && !is_bsd &&
|
|
(!is_castos || (target_cpu == "x86" || target_cpu == "x64") ||
|
|
is_cast_audio_only)) {
|
|
use_alsa = true
|
|
@@ -193,6 +196,10 @@ declare_args() {
|
|
if (!use_cras && !is_castos && !is_asan && !is_tsan) {
|
|
use_pulseaudio = true
|
|
}
|
|
+ }
|
|
+ if (is_openbsd) {
|
|
+ use_sndio = true
|
|
+ use_pulseaudio = false
|
|
}
|
|
}
|
|
|