mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 18:46:38 -04:00
This is also the first version where all the issues are fixed, and support has been included for ALSA and Pulseaudio. The ioctl() issue is resolved, and gettext is properly controlled by the NLS option. I'll be submitting these patches upstream, but due to the low rate of releases, want to get them into ports first. This is heavily modified from the submitted patch as every time anything was tested, a new issue cropped up. PR: 229782 Reported by: Yuri Victorovich <yuri@freebsd.org>
18 lines
534 B
C++
18 lines
534 B
C++
--- 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;
|
|
}
|