From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 2 Sep 2020 16:27:36 +0000 (+0100) Subject: Add the word 'jack' to the version string if Jack Audi support is compiled in. X-Git-Tag: 3.3.8~16^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa38f7820c58a67cdac08063792f0665f506dc75;p=thirdparty%2Fshairport-sync.git Add the word 'jack' to the version string if Jack Audi support is compiled in. --- diff --git a/common.c b/common.c index 39c4d62e..dbb4bad0 100644 --- a/common.c +++ b/common.c @@ -1460,6 +1460,9 @@ char *get_version_string() { #ifdef CONFIG_SNDIO strcat(version_string, "-sndio"); #endif +#ifdef CONFIG_JACK + strcat(version_string, "-jack"); +#endif #ifdef CONFIG_AO strcat(version_string, "-ao"); #endif