diff options
Diffstat (limited to 'audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc')
-rw-r--r-- | audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc b/audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc new file mode 100644 index 000000000000..48de52f7dc33 --- /dev/null +++ b/audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc @@ -0,0 +1,121 @@ +--- gtk2_ardour/engine_dialog.cc.orig 2008-04-09 23:17:02.000000000 +0200 ++++ gtk2_ardour/engine_dialog.cc 2008-04-10 18:53:32.000000000 +0200 +@@ -12,7 +12,7 @@ + #include <CoreFoundation/CFString.h> + #include <sys/param.h> + #include <mach-o/dyld.h> +-#else ++#elif !defined(__FreeBSD__) + #include <alsa/asoundlib.h> + #endif + +@@ -113,7 +113,9 @@ + #ifdef __APPLE__ + strings.push_back (X_("CoreAudio")); + #else ++#ifndef __FreeBSD__ + strings.push_back (X_("ALSA")); ++#endif + strings.push_back (X_("OSS")); + strings.push_back (X_("FFADO")); + #endif +@@ -158,7 +160,7 @@ + basic_packer.attach (period_size_combo, 1, 2, row, row + 1, FILL|EXPAND, (AttachOptions) 0); + row++; + +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + label = manage (new Label (_("Number of buffers"))); + basic_packer.attach (*label, 0, 1, row, row + 1, FILL|EXPAND, (AttachOptions) 0); + basic_packer.attach (periods_spinner, 1, 2, row, row + 1, FILL|EXPAND, (AttachOptions) 0); +@@ -179,7 +181,7 @@ + row++; + /* no audio mode with CoreAudio, its duplex or nuthin' */ + +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + label = manage (new Label (_("Audio Mode"))); + basic_packer.attach (*label, 0, 1, row, row + 1, FILL|EXPAND, (AttachOptions) 0); + basic_packer.attach (audio_mode_combo, 1, 2, row, row + 1, FILL|EXPAND, (AttachOptions) 0); +@@ -218,7 +220,7 @@ + realtime_button.signal_toggled().connect (mem_fun (*this, &EngineControl::realtime_changed)); + realtime_changed (); + +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + label = manage (new Label (_("Realtime Priority"))); + label->set_alignment (1.0, 0.5); + options_packer.attach (*label, 0, 1, row, row + 1, FILL|EXPAND, (AttachOptions) 0); +@@ -268,7 +270,7 @@ + options_packer.attach (*label, 0, 1, row, row + 1, FILL|EXPAND, (AttachOptions) 0); + ++row; + +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + label = manage (new Label (_("Dither"))); + label->set_alignment (1.0, 0.5); + options_packer.attach (dither_mode_combo, 1, 2, row, row + 1, FILL|EXPAND, AttachOptions(0)); +@@ -299,7 +301,7 @@ + device_packer.set_spacings (6); + row = 0; + +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + label = manage (new Label (_("Input device"))); + label->set_alignment (1.0, 0.5); + device_packer.attach (*label, 0, 1, row, row+1, FILL|EXPAND, (AttachOptions) 0); +@@ -570,7 +572,7 @@ + void + EngineControl::realtime_changed () + { +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + priority_spinner.set_sensitive (realtime_button.get_active()); + #endif + } +@@ -586,8 +588,10 @@ + #endif + + #ifndef __APPLE__ ++#ifndef __FreeBSD__ + } else if (driver == "ALSA") { + devices[driver] = enumerate_alsa_devices (); ++#endif + } else if (driver == "FFADO") { + devices[driver] = enumerate_ffado_devices (); + } else if (driver == "OSS") { +@@ -714,6 +718,7 @@ + return devs; + } + #else ++#ifndef __FreeBSD__ + vector<string> + EngineControl::enumerate_alsa_devices () + { +@@ -774,6 +779,7 @@ + + return devs; + } ++#endif + + vector<string> + EngineControl::enumerate_ffado_devices () +@@ -816,7 +822,9 @@ + vector<string>& strings = devices[driver]; + + if (strings.empty() && driver != "FFADO" && driver != "Dummy") { ++#if 0 + error << string_compose (_("No devices found for driver \"%1\""), driver) << endmsg; ++#endif + return; + } + +@@ -862,7 +870,7 @@ + EngineControl::redisplay_latency () + { + uint32_t rate = get_rate(); +-#ifdef __APPLE_ ++#if defined(__APPLE_) || defined(__FreeBSD__) + float periods = 2; + #else + float periods = periods_adjustment.get_value(); |