From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Sun, 3 Jul 2022 11:02:34 +0000 (+0100) Subject: Include -pw in the Version String if PipeWire support is included. X-Git-Tag: 4.1-rc1~24^2~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f317161aca4e8e69f1296ead3500150cefea8d78;p=thirdparty%2Fshairport-sync.git Include -pw in the Version String if PipeWire support is included. --- diff --git a/common.c b/common.c index a21dc9c4..f8b7ae1a 100644 --- a/common.c +++ b/common.c @@ -1657,6 +1657,9 @@ char *get_version_string() { #ifdef CONFIG_PA strcat(version_string, "-pa"); #endif +#ifdef CONFIG_PW + strcat(version_string, "-pw"); +#endif #ifdef CONFIG_SOUNDIO strcat(version_string, "-soundio"); #endif