blob: 7048e7c4818d769a4bd31e98ef550083d5a1630e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- src/xcwcp/application.cc.orig 2018-08-08 04:24:39 UTC
+++ src/xcwcp/application.cc
@@ -1126,6 +1126,7 @@ void Application::make_auxiliaries_end(v
void Application::check_audio_system(cw_config_t *config)
{
+#ifndef __FreeBSD__
if (config->audio_system == CW_AUDIO_ALSA
&& cw_is_pa_possible(NULL)) {
@@ -1137,6 +1138,7 @@ void Application::check_audio_system(cw_
msgBox.setText(message1 + " " + message2 + message3.arg(config->program_name).arg(config->program_name));
msgBox.exec();
}
+#endif
return;
}
|