From 3ef95b487c5f7a81dcd9c53478be8c4d52596abe Mon Sep 17 00:00:00 2001 From: =?utf8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 12 Apr 2018 00:00:00 +0200 Subject: [PATCH] meaningful default JACK client name rather than "JUCEJack" for all jack standalone apps, use the . 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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp b/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp index 35302a31..7031e1d5 100644 --- a/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp +++ b/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp @@ -105,7 +105,11 @@ namespace //============================================================================== #ifndef JUCE_JACK_CLIENT_NAME - #define JUCE_JACK_CLIENT_NAME "JUCEJack" + #ifdef JucePlugin_Name + # define JUCE_JACK_CLIENT_NAME JucePlugin_Name + #else + # define JUCE_JACK_CLIENT_NAME "JUCEJack" + #endif #endif struct JackPortIterator -- 2.30.2