meaningful default JACK client name
authorIOhannes m zmölnig <umlaeute@debian.org>
Wed, 11 Apr 2018 22:00:00 +0000 (00:00 +0200)
committerPeter Michael Green <plugwash@raspbian.org>
Sat, 30 Nov 2019 15:26:20 +0000 (15:26 +0000)
 rather than "JUCEJack" for all jack standalone apps,
 use the <JucePlugin_Name>.

Bug: https://github.com/WeAreROLI/JUCE/issues/331
Forwarded: https://github.com/WeAreROLI/JUCE/pull/351

Gbp-Pq: Name jack-client-name.patch

modules/juce_audio_devices/native/juce_linux_JackAudio.cpp

index 35302a31603f2a3a5b783a370d32e1b5f9447492..7031e1d518a0ac1c4d505453f104ba78cd4e40b2 100644 (file)
@@ -105,7 +105,11 @@ namespace
 \r
 //==============================================================================\r
 #ifndef JUCE_JACK_CLIENT_NAME\r
- #define JUCE_JACK_CLIENT_NAME "JUCEJack"\r
+ #ifdef JucePlugin_Name\r
+ # define JUCE_JACK_CLIENT_NAME JucePlugin_Name\r
+ #else\r
+ # define JUCE_JACK_CLIENT_NAME "JUCEJack"\r
+ #endif\r
 #endif\r
 \r
 struct JackPortIterator\r