[misc] Also have buildopts[] have disabled features + regex
This commit is contained in:
parent
a5ddb3c85d
commit
11de4c09bc
23
src/misc.c
23
src/misc.c
|
@ -59,33 +59,56 @@ static char *buildopts[] =
|
||||||
#endif
|
#endif
|
||||||
#ifdef ITUNES
|
#ifdef ITUNES
|
||||||
"iTunes XML",
|
"iTunes XML",
|
||||||
|
#else
|
||||||
|
"Without iTunes XML",
|
||||||
#endif
|
#endif
|
||||||
#ifdef SPOTIFY
|
#ifdef SPOTIFY
|
||||||
"Spotify",
|
"Spotify",
|
||||||
|
#else
|
||||||
|
"Without Spotify",
|
||||||
#endif
|
#endif
|
||||||
#ifdef LASTFM
|
#ifdef LASTFM
|
||||||
"LastFM",
|
"LastFM",
|
||||||
|
#else
|
||||||
|
"Without LastFM",
|
||||||
#endif
|
#endif
|
||||||
#ifdef CHROMECAST
|
#ifdef CHROMECAST
|
||||||
"Chromecast",
|
"Chromecast",
|
||||||
|
#else
|
||||||
|
"Without Chromecast",
|
||||||
#endif
|
#endif
|
||||||
#ifdef MPD
|
#ifdef MPD
|
||||||
"MPD",
|
"MPD",
|
||||||
|
#else
|
||||||
|
"Without MPD",
|
||||||
#endif
|
#endif
|
||||||
#ifdef RAOP_VERIFICATION
|
#ifdef RAOP_VERIFICATION
|
||||||
"Device verification",
|
"Device verification",
|
||||||
|
#else
|
||||||
|
"Without device verification",
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_LIBWEBSOCKETS
|
#ifdef HAVE_LIBWEBSOCKETS
|
||||||
"Websockets",
|
"Websockets",
|
||||||
|
#else
|
||||||
|
"Without websockets",
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ALSA
|
#ifdef HAVE_ALSA
|
||||||
"ALSA",
|
"ALSA",
|
||||||
|
#else
|
||||||
|
"Without ALSA",
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_LIBPULSE
|
#ifdef HAVE_LIBPULSE
|
||||||
"Pulseaudio",
|
"Pulseaudio",
|
||||||
#endif
|
#endif
|
||||||
#ifdef WEBINTERFACE
|
#ifdef WEBINTERFACE
|
||||||
"Webinterface",
|
"Webinterface",
|
||||||
|
#else
|
||||||
|
"Without webinterface",
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_REGEX_H
|
||||||
|
"Regex",
|
||||||
|
#else
|
||||||
|
"Without regex",
|
||||||
#endif
|
#endif
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue