]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Add the word 'jack' to the version string if Jack Audi support is compiled in.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 2 Sep 2020 16:27:36 +0000 (17:27 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Wed, 2 Sep 2020 16:27:36 +0000 (17:27 +0100)
common.c

index 39c4d62eeaf23358984482a14305840f684bff83..dbb4bad044c74a88c9c14d83f6197e39189ea566 100644 (file)
--- 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