--- /dev/null
+Description: meaningful default JACK client name
+ rather than "JUCEJack" for all jack standalone apps,
+ use the <JucePlugin_Name>.
+Author: IOhannes m zmölnig
+Bug: https://github.com/WeAreROLI/JUCE/issues/331
+Forwarded: https://github.com/WeAreROLI/JUCE/pull/351
+Last-Update: 2018-04-12
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- juce.orig/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
++++ juce/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
+@@ -105,7 +105,11 @@
+ \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