From 0fa9baf7d8b72b11a50c8254c348505130137112 Mon Sep 17 00:00:00 2001 From: =?utf8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 12 Apr 2018 13:03:24 +0200 Subject: [PATCH] Patch to generate useful JACK client names by default --- debian/patches/jack-client-name.patch | 24 ++++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 25 insertions(+) create mode 100644 debian/patches/jack-client-name.patch diff --git a/debian/patches/jack-client-name.patch b/debian/patches/jack-client-name.patch new file mode 100644 index 00000000..63ded137 --- /dev/null +++ b/debian/patches/jack-client-name.patch @@ -0,0 +1,24 @@ +Description: meaningful default JACK client name + rather than "JUCEJack" for all jack standalone apps, + use the . +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 @@ + + //============================================================================== + #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 diff --git a/debian/patches/series b/debian/patches/series index 7e16d838..9a72c8a3 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ +jack-client-name.patch reproducible-date.patch LV2-audioprocessor.patch debian_fixed-defines.patch -- 2.30.2